-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.xaml
More file actions
501 lines (478 loc) · 34.5 KB
/
Copy pathMainWindow.xaml
File metadata and controls
501 lines (478 loc) · 34.5 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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
<Window x:Class="GlassNotes.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:vm="clr-namespace:GlassNotes.ViewModels"
xmlns:GlassHelpers="clr-namespace:GlassNotes.Helpers"
Title="Glass Notes"
Height="520" Width="680"
MinHeight="420" MinWidth="620"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
ResizeMode="CanResizeWithGrip"
Icon="Assets/icon.ico"
SourceInitialized="MainWindow_SourceInitialized">
<Window.Resources>
<Style TargetType="ResizeGrip">
<Setter Property="Visibility" Value="Collapsed"/>
</Style>
</Window.Resources>
<!-- Root Grid containing main app and settings overlay -->
<Grid>
<!-- Main App Content - Opacity is applied here -->
<Border x:Name="MainBorder"
Background="Transparent"
BorderBrush="{DynamicResource BorderBrush}"
BorderThickness="1"
CornerRadius="16">
<Border.Effect>
<DropShadowEffect Color="#000000"
BlurRadius="24"
ShadowDepth="4"
Opacity="0.18"
Direction="270"/>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<!-- ── Title Bar ─────────────────────────────────────────────── -->
<Border Grid.Row="0"
Background="{DynamicResource SurfaceBrush}"
CornerRadius="16,16,0,0"
MouseLeftButtonDown="TitleBar_MouseLeftButtonDown">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0" Orientation="Horizontal" Margin="14,10">
<!-- Custom App Icon -->
<Viewbox Width="20" Height="20" Margin="0,0,8,0">
<Grid Width="24" Height="24">
<!-- Note Page -->
<Path Data="M4,2 L16,2 L20,6 L20,22 L4,22 Z" Fill="#FFD700" Stroke="#E0C000" StrokeThickness="1"/>
<!-- Folded Corner -->
<Path Data="M16,2 L16,6 L20,6 Z" Fill="#FFC107"/>
<!-- Lines -->
<Path Data="M7,8 L17,8 M7,12 L17,12 M7,16 L14,16" Stroke="#808080" StrokeThickness="1.5" StrokeStartLineCap="Round" StrokeEndLineCap="Round"/>
<!-- Pen -->
<Path Data="M16,16 L22,22 M16,16 L18,18" Stroke="#2196F3" StrokeThickness="2.5" StrokeStartLineCap="Round" StrokeEndLineCap="Round"/>
<Path Data="M15,15 L23,23" Stroke="#1976D2" StrokeThickness="1"/>
</Grid>
</Viewbox>
<TextBlock Text="Glass Notes"
FontWeight="SemiBold" FontSize="13"
Foreground="{DynamicResource TextPrimaryBrush}"
VerticalAlignment="Center"/>
</StackPanel>
<StackPanel Grid.Column="1" Orientation="Horizontal" Margin="4,6">
<Button Content="—" Style="{StaticResource IconButton}"
Click="MinimizeButton_Click" ToolTip="Minimize" Margin="2"/>
<Button x:Name="MaximizeButton" Content="☐" Style="{StaticResource IconButton}"
Click="MaximizeButton_Click" ToolTip="Maximize" Margin="2"/>
<Button Content="✕" Style="{StaticResource IconButton}"
Click="CloseButton_Click" ToolTip="Close" Margin="2"/>
</StackPanel>
</Grid>
</Border>
<!-- ── Main Content Area ─────────────────────────────────────── -->
<Grid Grid.Row="1" x:Name="ContentGrid">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200" MinWidth="160" MaxWidth="280"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<!-- Notes List Sidebar -->
<Border Grid.Column="0"
x:Name="NotesSidebar"
Background="Transparent"
BorderBrush="{DynamicResource BorderBrush}"
BorderThickness="0,0,1,0">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBlock Text="NOTES"
FontWeight="SemiBold" FontSize="10"
Foreground="{DynamicResource TextSecondaryBrush}"
Margin="14,10,14,4"/>
<!-- Search Box -->
<Grid Grid.Row="0" Margin="10,0,10,8">
<Border Background="{DynamicResource SurfaceBrush}"
CornerRadius="8"
BorderBrush="{DynamicResource BorderBrush}"
BorderThickness="1"
Height="30">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<TextBlock Text="🔍"
FontSize="12"
Foreground="{DynamicResource TextSecondaryBrush}"
VerticalAlignment="Center"
Margin="8,0,4,0"
IsHitTestVisible="False"/>
<TextBox Grid.Column="1"
Text="{Binding SearchText, UpdateSourceTrigger=PropertyChanged}"
Background="Transparent"
BorderThickness="0"
VerticalContentAlignment="Center"
FontSize="12"
Foreground="{DynamicResource TextPrimaryBrush}"
Padding="2,0,8,0">
<TextBox.Resources>
<Style TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="8"/>
</Style>
</TextBox.Resources>
</TextBox>
<!-- Placeholder Text -->
<TextBlock Grid.Column="1"
Text="Search notes..."
FontSize="12"
Foreground="#999999"
VerticalAlignment="Center"
Margin="6,0,0,0"
IsHitTestVisible="False">
<TextBlock.Style>
<Style TargetType="TextBlock">
<Setter Property="Visibility" Value="Collapsed"/>
<Style.Triggers>
<DataTrigger Binding="{Binding SearchText}" Value="">
<Setter Property="Visibility" Value="Visible"/>
</DataTrigger>
<DataTrigger Binding="{Binding SearchText}" Value="{x:Null}">
<Setter Property="Visibility" Value="Visible"/>
</DataTrigger>
</Style.Triggers>
</Style>
</TextBlock.Style>
</TextBlock>
</Grid>
</Border>
</Grid>
<ListBox Grid.Row="1"
x:Name="NotesListBox"
ItemsSource="{Binding FilteredNotes}"
SelectedItem="{Binding CurrentNote}"
Background="Transparent"
BorderThickness="0"
Margin="6,0,6,6"
AllowDrop="True"
MouseMove="NotesListBox_MouseMove"
Drop="NotesListBox_Drop"
MouseDoubleClick="NotesListBox_MouseDoubleClick">
<ListBox.ContextMenu>
<ContextMenu>
<MenuItem Header="Open in New Window"
Command="{Binding DataContext.OpenNoteInNewWindowCommand, RelativeSource={RelativeSource AncestorType=Window}}"
CommandParameter="{Binding}"/>
<MenuItem Header="Delete" Command="{Binding DeleteCurrentNoteCommand}"/>
</ContextMenu>
</ListBox.ContextMenu>
<ListBox.ItemTemplate>
<DataTemplate>
<Border x:Name="NoteItemBorder"
Background="{DynamicResource NoteItemBackgroundBrush}"
Padding="10,8" Margin="2,2"
CornerRadius="8"
BorderThickness="1.5"
BorderBrush="Transparent">
<StackPanel>
<TextBlock x:Name="TitleText" Text="{Binding Title}"
Foreground="{DynamicResource TextPrimaryBrush}"
FontSize="13"
FontFamily="{Binding DataContext.Settings.FontFamily, RelativeSource={RelativeSource AncestorType=Window}}"
FontWeight="SemiBold"
TextTrimming="CharacterEllipsis"/>
<Grid>
<TextBlock x:Name="DateText" Text="{Binding ModifiedAt, StringFormat='Modified {0:g}'}"
Foreground="{DynamicResource TextSecondaryBrush}"
FontSize="10"
FontFamily="{Binding DataContext.Settings.FontFamily, RelativeSource={RelativeSource AncestorType=Window}}"
Margin="0,2,0,0"/>
<!-- Launch to Window Button (Visible on Hover maybe?) -->
<Button Content="↗"
HorizontalAlignment="Right"
VerticalAlignment="Center"
FontSize="12" Width="20" Height="20"
Padding="0" Margin="0,0,4,0"
ToolTip="Open in New Window"
Command="{Binding DataContext.OpenNoteInNewWindowCommand, RelativeSource={RelativeSource AncestorType=Window}}"
CommandParameter="{Binding}">
<Button.Style>
<Style TargetType="Button" BasedOn="{StaticResource IconButton}">
<Setter Property="Visibility" Value="Collapsed"/>
<Style.Triggers>
<DataTrigger Binding="{Binding IsMouseOver, RelativeSource={RelativeSource AncestorType=ListBoxItem}}" Value="True">
<Setter Property="Visibility" Value="Visible"/>
</DataTrigger>
</Style.Triggers>
</Style>
</Button.Style>
</Button>
</Grid>
</StackPanel>
</Border>
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding IsSelected, RelativeSource={RelativeSource AncestorType=ListBoxItem}}" Value="True">
<Setter TargetName="NoteItemBorder" Property="BorderBrush" Value="#E2E2E2"/>
<Setter TargetName="NoteItemBorder" Property="Background" Value="White"/>
<Setter TargetName="TitleText" Property="Foreground" Value="#1A1A1A"/>
<Setter TargetName="DateText" Property="Foreground" Value="#666666"/>
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</Border>
<!-- Note Content Area -->
<Grid Grid.Column="1" Margin="8" ClipToBounds="True">
<TextBox x:Name="NoteTextBox"
Text="{Binding CurrentNote.Content, UpdateSourceTrigger=PropertyChanged}"
GlassHelpers:SearchHighlightBehavior.SearchText="{Binding SearchText}"
AcceptsReturn="True" TextWrapping="Wrap"
BorderThickness="0" Background="Transparent"
Foreground="{DynamicResource TextPrimaryBrush}"
FontSize="{Binding Settings.FontSize}"
FontFamily="{Binding Settings.FontFamily}"
VerticalScrollBarVisibility="Auto"
Padding="8"/>
</Grid>
</Grid>
<!-- ── Bottom Toolbar ────────────────────────────────────────── -->
<Border Grid.Row="2"
Background="{DynamicResource SurfaceBrush}"
CornerRadius="0,0,16,16"
Height="46">
<StackPanel Orientation="Horizontal" Margin="8,0"
HorizontalAlignment="Left" VerticalAlignment="Center">
<Button Content="➕" Style="{StaticResource IconButton}"
Command="{Binding CreateNewNoteCommand}"
ToolTip="New Note" FontSize="16"
Width="36" Height="36" Margin="2,0"/>
<Button Content="⚙️" Style="{StaticResource IconButton}"
Click="SettingsButton_Click"
ToolTip="Settings" FontSize="16"
Width="36" Height="36" Margin="2,0"/>
<Button Content="👁️" Style="{StaticResource IconButton}"
Command="{Binding ToggleAllNotesVisibilityCommand}"
ToolTip="Hide/Unhide all notes (Ctrl + Shift + Z)" FontSize="16"
Width="36" Height="36" Margin="2,0"/>
</StackPanel>
</Border>
</Grid>
</Border>
<!-- ── Settings Overlay (fixed size, centered, sibling to MainBorder) -->
<Grid x:Name="SettingsOverlay"
Visibility="Collapsed"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="380" Height="360"
Panel.ZIndex="100">
<Border Background="White" CornerRadius="16" BorderThickness="0">
<Border.Effect>
<DropShadowEffect Color="#000000" BlurRadius="32"
ShadowDepth="6" Opacity="0.22" Direction="270"/>
</Border.Effect>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<!-- Settings Header — drag moves the MAIN window -->
<Grid Grid.Row="0" Margin="24,24,16,8"
MouseLeftButtonDown="SettingsHeader_MouseLeftButtonDown"
Cursor="SizeAll">
<TextBlock Text="Settings" FontSize="26" FontWeight="Bold"
Foreground="#1A1A1A" VerticalAlignment="Center"/>
<Button Content="✕" HorizontalAlignment="Right" VerticalAlignment="Center"
Width="32" Height="32" Click="SettingsCloseButton_Click"
Cursor="Hand" FontSize="14">
<Button.Style>
<Style TargetType="Button">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Foreground" Value="#888888"/>
<Setter Property="Cursor" Value="Hand"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<Border x:Name="bg" Background="{TemplateBinding Background}" CornerRadius="8">
<ContentPresenter HorizontalAlignment="Center" VerticalAlignment="Center"/>
</Border>
<ControlTemplate.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="bg" Property="Background" Value="#F0F0F0"/>
<Setter Property="Foreground" Value="#333333"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Button.Style>
</Button>
</Grid>
<!-- Tab Bar -->
<Border Grid.Row="1" Margin="0,10,0,0">
<StackPanel>
<StackPanel Orientation="Horizontal" Margin="16,0">
<Button x:Name="SO_TabGeneral" Click="SOTab_Click" Tag="General" Margin="0,0,12,0">
<Button.Style>
<Style TargetType="Button">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Cursor" Value="Hand"/>
<Setter Property="Padding" Value="8,10"/>
<Setter Property="Foreground" Value="#888888"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<StackPanel Orientation="Horizontal">
<TextBlock Text="⚙" FontSize="14" VerticalAlignment="Center" Margin="0,0,6,0" Foreground="{Binding Foreground, RelativeSource={RelativeSource TemplatedParent}}"/>
<TextBlock Text="General" FontSize="14" VerticalAlignment="Center" Foreground="{Binding Foreground, RelativeSource={RelativeSource TemplatedParent}}"/>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Button.Style>
</Button>
<Button x:Name="SO_TabColors" Click="SOTab_Click" Tag="Colors" Margin="12,0">
<Button.Style>
<Style TargetType="Button">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Cursor" Value="Hand"/>
<Setter Property="Padding" Value="8,10"/>
<Setter Property="Foreground" Value="#888888"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<StackPanel Orientation="Horizontal">
<TextBlock Text="🎨" FontSize="14" VerticalAlignment="Center" Margin="0,0,6,0" Foreground="{Binding Foreground, RelativeSource={RelativeSource TemplatedParent}}"/>
<TextBlock Text="Colors" FontSize="14" VerticalAlignment="Center" Foreground="{Binding Foreground, RelativeSource={RelativeSource TemplatedParent}}"/>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Button.Style>
</Button>
<Button x:Name="SO_TabFont" Click="SOTab_Click" Tag="Font" Margin="12,0">
<Button.Style>
<Style TargetType="Button">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Cursor" Value="Hand"/>
<Setter Property="Padding" Value="8,10"/>
<Setter Property="Foreground" Value="#888888"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<StackPanel Orientation="Horizontal">
<TextBlock Text="𝐀" FontSize="14" VerticalAlignment="Center" Margin="0,0,6,0" Foreground="{Binding Foreground, RelativeSource={RelativeSource TemplatedParent}}"/>
<TextBlock Text="Font" FontSize="14" VerticalAlignment="Center" Foreground="{Binding Foreground, RelativeSource={RelativeSource TemplatedParent}}"/>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Button.Style>
</Button>
<Button x:Name="SO_TabAbout" Click="SOTab_Click" Tag="About" Margin="12,0">
<Button.Style>
<Style TargetType="Button">
<Setter Property="Background" Value="Transparent"/>
<Setter Property="BorderThickness" Value="0"/>
<Setter Property="Cursor" Value="Hand"/>
<Setter Property="Padding" Value="8,10"/>
<Setter Property="Foreground" Value="#888888"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="Button">
<StackPanel Orientation="Horizontal">
<TextBlock Text="ℹ" FontSize="14" VerticalAlignment="Center" Margin="0,0,6,0" Foreground="{Binding Foreground, RelativeSource={RelativeSource TemplatedParent}}"/>
<TextBlock Text="About" FontSize="14" VerticalAlignment="Center" Foreground="{Binding Foreground, RelativeSource={RelativeSource TemplatedParent}}"/>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</Button.Style>
</Button>
</StackPanel>
<Grid Margin="16,0,16,0" Height="3">
<Rectangle Fill="#E8E8E8" RadiusX="2" RadiusY="2"/>
<Rectangle x:Name="SO_TabUnderline" Fill="#FFD700"
RadiusX="2" RadiusY="2"
HorizontalAlignment="Left" Width="60"/>
</Grid>
</StackPanel>
</Border>
<!-- Tab Content -->
<ScrollViewer Grid.Row="2" VerticalScrollBarVisibility="Auto" Margin="16,12,16,16">
<Grid>
<StackPanel x:Name="SO_PanelGeneral">
<TextBlock Text="Transparency:" FontWeight="SemiBold" FontSize="13" Foreground="#1A1A1A" Margin="0,0,0,8"/>
<Slider x:Name="SO_TransparencySlider" Minimum="0.1" Maximum="1.0" Value="1.0" SmallChange="0.05" LargeChange="0.1"/>
<TextBlock x:Name="SO_TransparencyLabel" Text="100%" FontSize="12" Foreground="#666666" Margin="0,4,0,12"/>
<CheckBox x:Name="SO_AlwaysOnTopCheckBox" Content="Always on top" FontSize="13" Foreground="#1A1A1A"/>
</StackPanel>
<StackPanel x:Name="SO_PanelColors" Visibility="Collapsed">
<TextBlock Text="Background Color:" FontWeight="SemiBold" FontSize="13" Foreground="#1A1A1A" Margin="0,0,0,8"/>
<ComboBox x:Name="SO_BackgroundColorComboBox" Margin="0,0,0,16">
<ComboBoxItem Tag="White" Content="White" IsSelected="True"/>
<ComboBoxItem Tag="Cream" Content="Cream"/>
<ComboBoxItem Tag="Black" Content="Black"/>
<ComboBoxItem Tag="Light Gray" Content="Light Gray"/>
<ComboBoxItem Tag="Light Blue" Content="Light Blue"/>
<ComboBoxItem Tag="Light Green" Content="Light Green"/>
<ComboBoxItem Tag="Light Pink" Content="Light Pink"/>
<ComboBoxItem Tag="Light Yellow" Content="Light Yellow"/>
</ComboBox>
<TextBlock Text="Text Color:" FontWeight="SemiBold" FontSize="13" Foreground="#1A1A1A" Margin="0,0,0,8"/>
<ComboBox x:Name="SO_TextColorComboBox">
<ComboBoxItem Tag="Black" Content="Black" IsSelected="True"/>
<ComboBoxItem Tag="Dark Gray" Content="Dark Gray"/>
<ComboBoxItem Tag="Gray" Content="Gray"/>
<ComboBoxItem Tag="White" Content="White"/>
<ComboBoxItem Tag="Dark Blue" Content="Dark Blue"/>
<ComboBoxItem Tag="Dark Green" Content="Dark Green"/>
<ComboBoxItem Tag="Dark Red" Content="Dark Red"/>
<ComboBoxItem Tag="Purple" Content="Purple"/>
</ComboBox>
</StackPanel>
<StackPanel x:Name="SO_PanelFont" Visibility="Collapsed">
<TextBlock Text="Font Size:" FontWeight="SemiBold" FontSize="13" Foreground="#1A1A1A" Margin="0,0,0,8"/>
<Slider x:Name="SO_FontSizeSlider" Minimum="10" Maximum="24" Value="14" SmallChange="1" LargeChange="2"/>
<TextBlock x:Name="SO_FontSizeLabel" Text="14px" FontSize="12" Foreground="#666666" Margin="0,4,0,12"/>
<TextBlock Text="Font Family:" FontWeight="SemiBold" FontSize="13" Foreground="#1A1A1A" Margin="0,0,0,8"/>
<ComboBox x:Name="SO_FontFamilyComboBox">
<ComboBoxItem Tag="Segoe UI" Content="Segoe UI" IsSelected="True"/>
<ComboBoxItem Tag="Arial" Content="Arial"/>
<ComboBoxItem Tag="Calibri" Content="Calibri"/>
<ComboBoxItem Tag="Georgia" Content="Georgia"/>
<ComboBoxItem Tag="Consolas" Content="Consolas"/>
</ComboBox>
</StackPanel>
<StackPanel x:Name="SO_PanelAbout" Visibility="Collapsed">
<TextBlock Text="Glass Notes" FontWeight="Bold" FontSize="16" Foreground="#1A1A1A" Margin="0,0,0,8"/>
<TextBlock Text="Version 1.0.7" FontSize="13" Foreground="#666666" Margin="0,0,0,4"/>
<TextBlock Text="A lightweight, transparent note-taking app." FontSize="13" Foreground="#666666" TextWrapping="Wrap"/>
</StackPanel>
</Grid>
</ScrollViewer>
</Grid>
</Border>
</Grid>
</Grid>
</Window>