-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSaveEditor.xaml
16 lines (16 loc) · 1.19 KB
/
SaveEditor.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<Window x:Class="RemnantWorldChanger.SaveEditor"
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:RemnantWorldChanger"
mc:Ignorable="d"
Title="SaveEditor" Height="325" Width="475" MinHeight="325" MinWidth="500">
<DockPanel Background="#200" LastChildFill="true">
<TextBox Name="EditorWindow" Text="Lore Ipsum" Foreground="White" FontSize="20" DockPanel.Dock="Top" Background="#111" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Margin="10"/>
<DockPanel Background="#220000" Height="50" VerticalAlignment="Bottom" DockPanel.Dock="Left">
<Button DockPanel.Dock="Right" Content="Cancel" Width="100" Height="40" HorizontalAlignment="Right" Margin="0,-5,10,0" Click="Cancel_Click"/>
<Button DockPanel.Dock="Right" Content="Apply" Width="100" Height="40" HorizontalAlignment="Right" Margin="0,-5,20,0" Click="ApplyEdit_Click"/>
</DockPanel>
</DockPanel>
</Window>