-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WhatsNew.xaml
43 lines (36 loc) · 1.55 KB
/
WhatsNew.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
<Window x:Class="Elite_Dangerous_Addon_Launcher_V2.WhatsNewWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:Elite_Dangerous_Addon_Launcher_V2"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
Title="What's New"
Width="600"
Height="400"
TextElement.Foreground="{DynamicResource MaterialDesign.Brush.Foreground}"
Background="{DynamicResource MaterialDesign.Brush.Background}"
TextElement.FontWeight="Regular"
TextElement.FontSize="12"
FontFamily="{materialDesign:MaterialDesignFont}"
TextOptions.TextFormattingMode="Ideal"
TextOptions.TextRenderingMode="Auto"
>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<RichTextBox x:Name="WhatsNewText"
Grid.Row="0"
IsReadOnly="True"
ScrollViewer.VerticalScrollBarVisibility="Auto"
Margin="10">
<FlowDocument/>
</RichTextBox>
<Button x:Name="CloseButton"
Grid.Row="1"
Content="Close"
Margin="10"
HorizontalAlignment="Right"
Click="Bt_Close_Click"/>
</Grid>
</Window>