-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
13 lines (13 loc) · 773 Bytes
/
MainWindow.xaml
File metadata and controls
13 lines (13 loc) · 773 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
<Window x:Class="gw2_launcher.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="138" Width="525"
KeyUp="Window_KeyUp"
ResizeMode="CanResizeWithGrip"
Background="{DynamicResource {x:Static SystemColors.ActiveCaptionBrushKey}}"
Loaded="Window_Loaded" Title="Guild Wars Multilauncher">
<DockPanel Margin="0">
<Rectangle Stroke="Black" MouseDown="Rectangle_MouseDown" Fill="{DynamicResource {x:Static SystemColors.MenuBarBrushKey}}" StrokeThickness="0" DockPanel.Dock="Top" Height="20" Visibility="Collapsed"/>
<ListBox x:Name="contenu" BorderThickness="0" DockPanel.Dock="Top"/>
</DockPanel>
</Window>