forked from Viniixd/Remastered-AssetsEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLegacyAssetsOptionsDialog.xaml
More file actions
24 lines (24 loc) · 1.17 KB
/
LegacyAssetsOptionsDialog.xaml
File metadata and controls
24 lines (24 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Window x:Class="Assets_Editor.LegacyAssetsOptionsDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Legacy Client Options"
ResizeMode="NoResize"
WindowStartupLocation="CenterOwner"
SizeToContent="WidthAndHeight"
WindowStyle="ToolWindow">
<Border Padding="20" Background="{DynamicResource MaterialDesignPaper}">
<StackPanel>
<TextBlock Text="Select legacy client version:" Margin="0,0,0,8"/>
<ComboBox x:Name="VersionCombo"
DisplayMemberPath="Number"
SelectedValuePath="Number"
Width="180"
Margin="0,0,0,12"/>
<CheckBox x:Name="TransparencyCheckBox" Content="Transparent sprites" Margin="0,0,0,20"/>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<Button Content="Cancel" Width="80" Margin="0,0,8,0" IsCancel="True"/>
<Button Content="OK" Width="80" IsDefault="True" Click="Ok_Click"/>
</StackPanel>
</StackPanel>
</Border>
</Window>