-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
363 lines (357 loc) · 25.6 KB
/
MainWindow.xaml
File metadata and controls
363 lines (357 loc) · 25.6 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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<Window x:Class="JobCatcher.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:res="clr-namespace:JobCatcher.Resources"
Style="{StaticResource WindowStyled}" Title="JobCatcher" Height="900" Width="1800" Icon="icon.ico" WindowStartupLocation="CenterScreen" Loaded="Window_Loaded" Closing="Window_Closing" WindowState="Maximized">
<Window.Resources>
<ContextMenu x:Key="trayMenu">
<MenuItem Header="Скрыть" Click="ShowHideMainWindow" />
<Separator />
<MenuItem Header="Выход" Click="MenuExitClick" />
</ContextMenu>
<Style TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="5" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Foreground" Value="{StaticResource Foreground}" />
</Style>
<Style x:Key="varStyle" TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="5" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Foreground" Value="#34D800" />
</Style>
<Style x:Key="errorStyle" TargetType="{x:Type TextBlock}">
<Setter Property="Margin" Value="5" />
<Setter Property="Foreground" Value="Red" />
</Style>
</Window.Resources>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="0"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<Border Grid.Row="1" Height="30" BorderBrush="#000" BorderThickness="0">
<Border.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientBrush.GradientStops>
<GradientStopCollection>
<GradientStop Color="#222222" Offset="0.0"/>
<GradientStop Color="#111111" Offset="1.0"/>
</GradientStopCollection>
</GradientBrush.GradientStops>
</LinearGradientBrush>
</Border.Background>
<Grid>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<Button Style="{StaticResource ToolBar}" Margin="10,0,10,0" Name="playButton" Click="playButton_Click">
<Image Source="Images/start.png"></Image>
</Button>
<Button Style="{StaticResource ToolBar}" Margin="10,0,10,0" Name="pauseButton" Visibility="Collapsed" Click="pauseButton_Click">
<Image Source="Images/stop.png"></Image>
</Button>
<CheckBox Name="popup" VerticalAlignment="Center" Checked="popup_Checked" Unchecked="popup_Checked">Показывать всплывающие окна</CheckBox>
</StackPanel>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<Button Style="{StaticResource ToolBar}" Margin="0,3,10,2" Name="removeWindows" Height="Auto" Click="removeWindows_Click">Закрыть окна</Button>
<Button Style="{StaticResource ToolBar}" Margin="0,3,10,2" Name="returnButton" Height="Auto" Click="returnButton_Click">Вернуть</Button>
<Button Style="{StaticResource ToolBar}" Margin="0,0,10,0" Name="settingsButton" Click="settingsButton_Click">
<StackPanel Orientation="Horizontal">
<Image Source="Images/settings.png"></Image>
<TextBlock Margin="5,0,0,0" VerticalAlignment="Center">Настройки</TextBlock>
</StackPanel>
</Button>
<Button Style="{StaticResource ToolBar}" Margin="0,0,10,0" Name="exitButton" Click="exitButton_Click">
<StackPanel Orientation="Horizontal">
<Image Source="Images/exit.png"></Image>
<TextBlock Margin="5,0,0,0" VerticalAlignment="Center">Выход</TextBlock>
</StackPanel>
</Button>
</StackPanel>
</Grid>
</Border>
<Grid Grid.Row="2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="2*"></ColumnDefinition>
<ColumnDefinition Width="2"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<StackPanel Grid.Column="0" Orientation="Horizontal">
<TextBlock FontSize="18">Freelance</TextBlock>
<CheckBox Name="flEnabled" VerticalAlignment="Center" Checked="flEnabled_Checked" Unchecked="flEnabled_Checked">Включено</CheckBox>
</StackPanel>
<Expander Grid.Column="0" Grid.Row="1">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock>Профиль:</TextBlock>
<ComboBox Grid.Column="1" Name="profileFlCombo" IsEditable="True" SelectionChanged="profileFlCombo_SelectionChanged"></ComboBox>
<Button Grid.Column="2" Name="saveProfileFl" Click="saveProfileFl_Click">Сохранить профиль</Button>
<Button Grid.Column="3" Name="deleteProfileFl" Click="deleteProfileFl_Click">Удалить профиль</Button>
</Grid>
<GroupBox Grid.Row="1" Header="Параметры">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock>Слова-исключения через запятую</TextBlock>
<TextBox Grid.Row="1" Name="searchFl"></TextBox>
<WrapPanel Grid.Row="2" Orientation="Horizontal">
<CheckBox Name="autoAnswerFl" VerticalAlignment="Center">Автоматический отклик</CheckBox>
<CheckBox Name="businessFl" VerticalAlignment="Center">Показывать бизнес-аккаунты</CheckBox>
<StackPanel Orientation="Horizontal" Margin="10,0">
<TextBlock Grid.Row="1">Прокси</TextBlock>
<TextBox Grid.Column="1" Grid.Row="1" Name="proxyFl" Width="350"></TextBox>
</StackPanel>
</WrapPanel>
</Grid>
</GroupBox>
<WrapPanel Grid.Row="2">
<GroupBox Width="400" Visibility="Collapsed">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<Image Grid.RowSpan="2" Source="Images\logos\freelance.png" Height="30" HorizontalAlignment="Left" Margin="10"></Image>
<TextBlock Grid.Column="1">Логин Freelance.ru</TextBlock>
<TextBlock Grid.Column="1" Grid.Row="1">Пароль Freelance.ru</TextBlock>
<TextBox Grid.Column="2" Name="loginFreelance"></TextBox>
<PasswordBox Grid.Column="2" Grid.Row="1" Name="passFreelance"></PasswordBox>
<TextBlock Grid.Column="1" Grid.Row="2">Логин FL.ru</TextBlock>
<TextBlock Grid.Column="1" Grid.Row="3">Пароль FL.ru</TextBlock>
<TextBox Grid.Column="2" Grid.Row="2" Name="loginFlRu"></TextBox>
<PasswordBox Grid.Column="2" Grid.Row="3" Name="passFlRu"></PasswordBox>
</Grid>
</GroupBox>
<GroupBox>
<StackPanel>
<CheckBox Name="freelanceru" VerticalAlignment="Center">freelance.ru</CheckBox>
<CheckBox Name="flru" VerticalAlignment="Center">fl.ru</CheckBox>
</StackPanel>
</GroupBox>
</WrapPanel>
</Grid>
</Expander>
<StackPanel Grid.Column="0" Grid.Row="4" Orientation="Horizontal">
<CheckBox Name="allProfilesFl" IsChecked="True" VerticalAlignment="Center" Visibility="Collapsed" Checked="allProfilesFl_Checked" Unchecked="allProfilesFl_Checked">Все профили</CheckBox>
<TextBlock>Количество:</TextBlock>
<TextBlock Name="countFl" Style="{StaticResource varStyle}">0</TextBlock>
</StackPanel>
<StackPanel Grid.Column="0" Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Right">
<RadioButton Name="dateOld" GroupName="dateSort" Checked="DateOld_Checked">Сначала старые</RadioButton>
<RadioButton Name="dateNew" GroupName="dateSort" Checked="DateOld_Checked">Сначала новые</RadioButton>
<Button Name="removeListFl" FontSize="12" Click="removeListFl_Click">Очистить список</Button>
</StackPanel>
<ListBox Grid.Column="0" Grid.Row="5" Name="flList" ScrollViewer.HorizontalScrollBarVisibility="Disabled" ScrollViewer.CanContentScroll="False">
<ListBox.ItemTemplate>
<DataTemplate>
<Grid x:Name="flListGrid" TextBlock.Foreground="#aaa" Tag="{Binding Path=Id}" MouseEnter="flListGrid_MouseEnter" MouseLeave="flListGrid_MouseLeave" MouseLeftButtonDown="flListGrid_MouseLeftButtonDown">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="10"></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="10"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="5"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Grid.Column="1" Grid.Row="1" Text="{Binding Path=Site}" Foreground="#7a7a7a"></TextBlock>
<TextBox Style="{StaticResource selectable}" Grid.Column="1" Grid.Row="2" Text="{Binding Path=Name}" Foreground="#4CCA49" FontSize="17"></TextBox>
<StackPanel Grid.Column="1" Grid.Row="3" Orientation="Horizontal">
<TextBlock x:Name="dateFlList" Tag="{Binding Path=Id}" FontSize="14" Margin="0,0,30,0" Loaded="dateFlList_Loaded"></TextBlock>
<StackPanel Orientation="Horizontal" Visibility="Collapsed">
<TextBlock Text="{Binding Path=City}" FontSize="14"></TextBlock>
<TextBlock x:Name="commaFl" Text="," FontSize="14" Margin="0,0,5,0" Tag="{Binding Path=Id}" Loaded="commaFl_Loaded"></TextBlock>
<TextBlock x:Name="companyFl" Text="{Binding Path=Company}" FontSize="14" TextDecorations="Underline"></TextBlock>
</StackPanel>
<TextBlock Text="{Binding Path=Salary}" FontWeight="Bold" FontSize="14" Margin="30,0,0,0"></TextBlock>
</StackPanel>
<TextBox Style="{StaticResource selectable}" Grid.Column="1" Grid.Row="6" Text="{Binding Path=Content}" TextWrapping="Wrap" Foreground="{StaticResource Foreground}" FontSize="15"></TextBox>
<Button Grid.Column="2" Grid.RowSpan="10" x:Name="detailFlList" Height="35" Tag="{Binding Path=Id}" VerticalAlignment="Top" Click="detailFlList_Click">Закрыть</Button>
<Button Grid.Column="3" Grid.RowSpan="10" x:Name="answerFlList" Height="35" Tag="{Binding Path=Id}" VerticalAlignment="Top" Click="answerFlList_Click" Loaded="answerFlList_Loaded">Перейти</Button>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<StatusBar Grid.Column="0" Grid.Row="6">
<TextBlock Name="viewedFl"></TextBlock>
<Separator></Separator>
<TextBlock Name="updateFl"></TextBlock>
<Separator></Separator>
<TextBlock Name="avito"></TextBlock>
</StatusBar>
<GridSplitter Grid.Column="1" Grid.RowSpan="10" HorizontalAlignment="Stretch" Width="2" Background="#555"></GridSplitter>
<StackPanel Grid.Column="2" Orientation="Horizontal">
<TextBlock FontSize="18">Работа</TextBlock>
<CheckBox Name="workEnabled" VerticalAlignment="Center" Checked="workEnabled_Checked" Unchecked="workEnabled_Checked">Включено</CheckBox>
</StackPanel>
<Expander Grid.Column="2" Grid.Row="1">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock>Профиль:</TextBlock>
<ComboBox Grid.Column="1" Name="profileWorkCombo" IsEditable="True" SelectionChanged="profileWorkCombo_SelectionChanged"></ComboBox>
<Button Grid.Column="2" Name="saveProfileWork" Click="saveProfileWork_Click">Сохранить профиль</Button>
<Button Grid.Column="3" Name="deleteProfileWork" Click="deleteProfileWork_Click">Удалить профиль</Button>
</Grid>
<GroupBox Grid.Row="1" Header="Параметры">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock>Строка поиска</TextBlock>
<TextBox Grid.Column="1" Name="searchWork"></TextBox>
<WrapPanel Grid.Row="1" Grid.ColumnSpan="2" Orientation="Horizontal">
<CheckBox Name="autoAnswerWork" VerticalAlignment="Center">Автоматический отклик</CheckBox>
<StackPanel Orientation="Horizontal" Margin="10,0">
<TextBlock Grid.Row="1">Уровень зарплаты</TextBlock>
<TextBox Grid.Column="1" Grid.Row="1" Name="salaryWork" Width="150"></TextBox>
</StackPanel>
<CheckBox Grid.Column="2" Grid.Row="1" Name="remote" VerticalAlignment="Center">Удаленная работа</CheckBox>
<StackPanel Orientation="Horizontal" Margin="10,0">
<TextBlock Grid.Row="1">Прокси</TextBlock>
<TextBox Grid.Column="1" Grid.Row="1" Name="proxyWork" Width="150"></TextBox>
</StackPanel>
</WrapPanel>
</Grid>
</GroupBox>
<WrapPanel Grid.Row="2">
<GroupBox Width="400">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<Image Grid.RowSpan="2" Source="Images\logos\hh.png" Height="30" HorizontalAlignment="Left" Margin="10"></Image>
<TextBlock Grid.Column="1">Логин</TextBlock>
<TextBlock Grid.Column="1" Grid.Row="1">Пароль</TextBlock>
<TextBlock Grid.Column="1" Grid.Row="2">Ссылка на резюме</TextBlock>
<TextBox Grid.Column="2" Name="loginHh"></TextBox>
<PasswordBox Grid.Column="2" Grid.Row="1" Name="passHh"></PasswordBox>
<TextBox Grid.Column="2" Grid.Row="2" Name="resumeLinkHh"></TextBox>
</Grid>
</GroupBox>
</WrapPanel>
</Grid>
</Expander>
<StackPanel Grid.Column="2" Grid.Row="4" Orientation="Horizontal">
<CheckBox Name="allProfilesWork" IsChecked="True" VerticalAlignment="Center" Checked="allProfilesWork_Checked" Unchecked="allProfilesWork_Checked">Все профили</CheckBox>
<TextBlock>Количество:</TextBlock>
<TextBlock Name="countWork" Style="{StaticResource varStyle}">0</TextBlock>
</StackPanel>
<StackPanel Grid.Column="2" Grid.Row="4" Orientation="Horizontal" HorizontalAlignment="Right">
<Button Name="removeListWork" FontSize="12" Click="removeListWork_Click">Очистить список</Button>
</StackPanel>
<ListBox Grid.Column="2" Grid.Row="5" Name="workList" ScrollViewer.HorizontalScrollBarVisibility="Disabled" ScrollViewer.CanContentScroll="False">
<ListBox.ItemTemplate>
<DataTemplate>
<Grid x:Name="workListGrid" TextBlock.Foreground="#aaa" Tag="{Binding Path=Id}" MouseEnter="workListGrid_MouseEnter" MouseLeave="workListGrid_MouseLeave" MouseLeftButtonDown="workListGrid_MouseLeftButtonDown">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="10"></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
<ColumnDefinition Width="Auto"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="10"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="Auto"></RowDefinition>
<RowDefinition Height="5"></RowDefinition>
</Grid.RowDefinitions>
<TextBlock Grid.Column="1" Grid.Row="1" Text="{Binding Path=ProfileName}" Foreground="#7a7a7a"></TextBlock>
<TextBlock Grid.Column="1" Grid.Row="2" Text="{Binding Path=Name}" Foreground="#4CCA49" FontSize="17"></TextBlock>
<TextBlock Grid.Column="1" Grid.Row="3" Text="{Binding Path=DateS}" FontSize="11"></TextBlock>
<StackPanel Grid.Column="1" Grid.Row="4" Orientation="Horizontal">
<TextBlock Text="{Binding Path=City}" FontSize="14"></TextBlock>
<TextBlock Text="," FontSize="14" Margin="0,0,5,0"></TextBlock>
<TextBlock Text="{Binding Path=Company}" FontSize="14" TextDecorations="Underline"></TextBlock>
</StackPanel>
<TextBlock Grid.Column="1" Grid.Row="5" Text="{Binding Path=Salary}" FontWeight="Bold" FontSize="14"></TextBlock>
<TextBlock Grid.Column="1" Grid.Row="6" Text="{Binding Path=Content}" TextWrapping="Wrap" FontSize="14"></TextBlock>
<Button Grid.Column="2" Grid.RowSpan="10" x:Name="detailWorkList" Height="35" Tag="{Binding Path=Id}" VerticalAlignment="Top" Click="detailWorkList_Click">Закрыть</Button>
<Button Grid.Column="3" Grid.RowSpan="10" x:Name="answerWorkList" Height="35" Tag="{Binding Path=Id}" VerticalAlignment="Top" Click="answerWorkList_Click" Loaded="answerWorkList_Loaded">Перейти</Button>
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
<StatusBar Grid.Column="2" Grid.Row="6">
<TextBlock Name="viewedWork"></TextBlock>
<Separator></Separator>
<TextBlock Name="updateWork"></TextBlock>
</StatusBar>
</Grid>
<GridSplitter Grid.Row="3" HorizontalAlignment="Stretch" Height="2" Background="#555"></GridSplitter>
<TextBox Grid.Row="4" Name="log" TextWrapping="Wrap" AcceptsReturn="True" FontSize="12" IsReadOnly="True" KeyUp="log_KeyUp"></TextBox>
<StatusBar Grid.Row="5"></StatusBar>
</Grid>
</Window>