-
Notifications
You must be signed in to change notification settings - Fork 21
/
RestoreDialog.xaml
17 lines (16 loc) · 1.36 KB
/
RestoreDialog.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Window x:Class="RemnantSaveManager.RestoreDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:RemnantSaveManager"
mc:Ignorable="d"
Title="Restore Backup" Height="131.476" Width="589.909" ResizeMode="CanMinimize" WindowStartupLocation="CenterOwner" Icon="Resources/Undo_32x.png">
<Grid Background="#FF4B4B4B">
<Button Name="btnCharacter" Content="Character" Margin="151,55,0,10" HorizontalAlignment="Left" Width="125" Click="btnCharacter_Click"/>
<Button Name="btnWorld" Content="World" HorizontalAlignment="Left" Margin="281,55,0,10" Width="125" Click="btnWorld_Click"/>
<Button Name="btnCancel" Content="Cancel" Margin="0,55,10,10" HorizontalAlignment="Right" Width="95" IsCancel="True"/>
<Label Name="txtSave" Content="Label" HorizontalAlignment="Left" Margin="10,10,0,0" RenderTransformOrigin="0.07,0.089" Width="564" Height="40" VerticalAlignment="Top" Background="{x:Null}" Foreground="White"/>
<Button x:Name="btnAll" Content="Everything" Margin="10,55,0,10" HorizontalAlignment="Left" Width="125" Click="btnAll_Click"/>
</Grid>
</Window>