-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml
64 lines (64 loc) · 2.45 KB
/
MainWindow.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Window x:Class="EVE_Online_Quick_Client_Changer.MainWindow"
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:EVE_Online_Quick_Client_Changer"
mc:Ignorable="d"
Title="빠른 클라 전환기"
Height="350"
Width="320"
MinHeight="350"
MinWidth="320"
Closing="Window_Closing"
Loaded="Window_Loaded">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition Width="140"/>
</Grid.ColumnDefinitions>
<ListBox Name="lbEveClients"
Grid.Column="0"
SelectionChanged="lbEveClients_SelectionChanged">
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding MainWindowTitle}" Foreground="{Binding TextColor}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<Grid
Grid.Column="1">
<StackPanel
Orientation="Vertical">
<Label Name="lblSelectedClientName"
Content="클라명 : "/>
<Label Name="lblSelectedClientHotKey"
Content="설정된 키:"/>
</StackPanel>
<StackPanel
VerticalAlignment="Bottom"
Margin="6,0,6,6">
<Button Name="btnSetClientKey"
Height="40"
Content="클라이언트 키 지정"
Click="ButtonClickEventsHandler"/>
<Button Name="btnClientReload"
Height="40"
Margin="0,5,0,0"
Content="클라이언트 리로드"
Click="ButtonClickEventsHandler"/>
<Button Name="btnSave"
Height="40"
Margin="0,5,0,0"
Content="저장"
Click="ButtonClickEventsHandler"/>
<Button
Margin="0,5,0,0"
Content="초기화"/>
<Button
Margin="0,5,0,0"
Content="단축키 미동작중"/>
</StackPanel>
</Grid>
</Grid>
</Window>