-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutDialog.xaml
More file actions
25 lines (24 loc) · 1.53 KB
/
AboutDialog.xaml
File metadata and controls
25 lines (24 loc) · 1.53 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
<Window x:Class="WindowsAdvancedAttributesManager.AboutDialog"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:fa="http://schemas.fontawesome.io/icons/"
Title="Windows Windows Advanced Attributes Manager - About" Height="250" Width="500"
Icon="waam.ico"
WindowStartupLocation="CenterScreen">
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="22" Text="Windows Windows Advanced Attributes Manager" Margin="20"/>
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" Name="CurrentVersion" FontSize="14"/>
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="14" Text="Read docs or submit an issue at:"/>
<Button
Template="{DynamicResource ButtonTemplate}"
fa:Awesome.Content="Github"
TextElement.FontFamily="pack://application:,,,/FontAwesome.WPF;component/#FontAwesome"
Cursor="Hand" Click="Gh_Click" Padding="5" FontSize="16" Width="38" Margin="10" />
<TextBlock Name="Message" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="14" Margin="30">
By:
<Hyperlink NavigateUri="https://github.com/joeperpetua" RequestNavigate="Gh_Profile_Click">
joeperpetua
</Hyperlink>
</TextBlock>
</StackPanel>
</Window>