Replaced the old VS templates with ones that offer more flexiblity. Started replacing the Content Project for the samples with our custom project type. Inlcuded a basic not yet working AssimpImporter.
18 lines
1.3 KiB
XML
18 lines
1.3 KiB
XML
<ui:DialogWindowVersioningWorkaround
|
|
x:Class="Microsoft.VisualStudio.OverwriteFileDialog"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:ui="clr-namespace:Microsoft.VisualStudio"
|
|
x:ClassModifier="public"
|
|
Title="Merge files or folders..." Height="179" Width="470" WindowStartupLocation="CenterOwner" ResizeMode="NoResize" SizeToContent="WidthAndHeight">
|
|
<StackPanel>
|
|
<TextBox x:Name="_message" Margin="10,10,10,10" Height="86" BorderThickness="0" TextWrapping="WrapWithOverflow" Background="{x:Null}" IsReadOnly="True"/>
|
|
<CheckBox x:Name="_allItems" Content="Do this for all items" Margin="10,0,0,0" Height="15" />
|
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
|
|
<Button x:Name="_yes" Content="_Yes" Margin="0,0,5,5" Click="YesClick" Height="20" Width="75" DockPanel.Dock="Right" />
|
|
<Button x:Name="_no" Content="_No" Margin="0,0,5,5" IsDefault="True" Click="NoClick" Height="20" Width="75" DockPanel.Dock="Right"/>
|
|
<Button x:Name="_cancel" Content="C_ancel" Margin="0,0,5,5" IsCancel="True" Click="CancelClick" Height="20" Width="75" DockPanel.Dock="Right"/>
|
|
</StackPanel>
|
|
</StackPanel>
|
|
</ui:DialogWindowVersioningWorkaround>
|