-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTopScreenEditorWindow.xaml
24 lines (24 loc) · 1.93 KB
/
TopScreenEditorWindow.xaml
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="dspatch_gui.TopScreenEditorWindow"
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:dspatch_gui"
mc:Ignorable="d"
Title="HaxxStation Download Station Top Screen Editor" Height="200" Width="360" Background="#FFF4F4F4" ResizeMode="NoResize">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="65*"/>
<ColumnDefinition Width="289*"/>
</Grid.ColumnDefinitions>
<Canvas Grid.ColumnSpan="2" Margin="33,6,23,10">
<Canvas Height="130" Width="298">
<Label x:Name="label" Content="HaxxStation Top Screen" HorizontalAlignment="Center" VerticalAlignment="Top" Height="25" Width="138" RenderTransformOrigin="0.481,2.88" Canvas.Left="78" Canvas.Top="-1"/>
<TextBox x:Name="haxxStationTextBox" TextWrapping="Wrap" VerticalAlignment="Top" Height="19" RenderTransformOrigin="0.505,2.0" Text="HaxxStation by Gericom," Canvas.Top="38" Width="192" MaxLength="23" Canvas.Left="51"/>
<TextBox x:Name="haxxStationTextBox2" TextWrapping="Wrap" VerticalAlignment="Top" Height="19" RenderTransformOrigin="0.505,2.0" Text="shutterbug2000, Apache Thunder" Canvas.Left="51" Canvas.Top="85" Width="192" MaxLength="30"/>
<Button x:Name="haxxStationTopSave" Content="Save Top" HorizontalAlignment="Center" VerticalAlignment="Top" Width="74" Click="HaxxStationTopSave_click" Height="20" Canvas.Left="110" Canvas.Top="109"/>
</Canvas>
<Button x:Name="button" Content="Close" HorizontalAlignment="Center" VerticalAlignment="Top" Width="74" Height="20" Click="button_Click" Canvas.Left="112" Canvas.Top="135"/>
</Canvas>
</Grid>
</Window>