-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBannerEditorWindow.xaml
More file actions
25 lines (25 loc) · 2.13 KB
/
Copy pathBannerEditorWindow.xaml
File metadata and controls
25 lines (25 loc) · 2.13 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
25
<Window x:Class="dspatch_gui.BannerEditorWindow"
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 Banner 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,10,23,10">
<Button x:Name="button" Content="Close" HorizontalAlignment="Center" VerticalAlignment="Top" Width="74" Height="20" Click="button_Click" Canvas.Left="107" Canvas.Top="131"/>
<Canvas Height="120" Width="298">
<TextBox x:Name="haxxStationTextBox" TextWrapping="Wrap" VerticalAlignment="Top" Height="19" RenderTransformOrigin="0.505,2.197" Text="HaxxStation" Canvas.Top="28" Width="119" MaxLength="12" Canvas.Left="84"/>
<Label x:Name="label_Copy" Content="HaxxStation Internal Banner" HorizontalAlignment="Center" VerticalAlignment="Top" Height="25" Width="159" RenderTransformOrigin="0.481,2.884" Canvas.Left="64"/>
<Button x:Name="haxxStationBannerSave" Content="Save Banner" HorizontalAlignment="Center" VerticalAlignment="Top" Width="76" Click="HaxxStationBannerSave_click" Height="20" Canvas.Left="106" Canvas.Top="100"/>
<TextBox x:Name="haxxStationTextBox2" TextWrapping="Wrap" VerticalAlignment="Top" Height="19" RenderTransformOrigin="0.505,2.197" Text="By Gericom, shutterbug2000" Canvas.Left="60" Canvas.Top="52" Width="167" MaxLength="26"/>
<TextBox x:Name="haxxStationTextBox3" TextWrapping="Wrap" VerticalAlignment="Top" Height="19" RenderTransformOrigin="0.505,2.197" Text="and Apache Thunder" Canvas.Left="84" Canvas.Top="76" Width="119" MaxLength="18"/>
</Canvas>
</Canvas>
</Grid>
</Window>