-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAboutPage.xaml
More file actions
31 lines (26 loc) · 1.48 KB
/
Copy pathAboutPage.xaml
File metadata and controls
31 lines (26 loc) · 1.48 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
<Window
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:AFKManager"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" x:Class="AFKManager.AboutPage"
mc:Ignorable="d"
Title="About" Height="200" Width="400" ResizeMode="NoResize" Background="#2C2F33" WindowStartupLocation="CenterOwner">
<Grid>
<materialDesign:Card Background="#FF23272A" HorizontalAlignment="Center" VerticalAlignment="Top" Margin="20" Padding="10">
<StackPanel Orientation="Vertical" HorizontalAlignment="Center" VerticalAlignment="Stretch">
<TextBlock Foreground="White" TextAlignment="Center">
AFKManager created by @AndrewBPC (Telegram)
<LineBreak/>
a.novikov05@yandex.ru
<LineBreak/>
Software is distributing on an "AS IS" basis
<LineBreak/>
Without warranty of any kind
</TextBlock>
</StackPanel>
</materialDesign:Card>
<Button Margin="10" VerticalAlignment="Bottom" Content="OK" Width="100" Click="Button_Click"/>
</Grid>
</Window>