-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAboutWindow.xaml
More file actions
21 lines (20 loc) · 1.14 KB
/
AboutWindow.xaml
File metadata and controls
21 lines (20 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Window x:Class="NMEA2000Analyzer.AboutWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="About" SizeToContent="WidthAndHeight" ResizeMode="NoResize" WindowStartupLocation="CenterOwner">
<Grid Margin="10">
<StackPanel>
<TextBlock Text="NMEA2000 Analyzer" FontWeight="Bold" FontSize="16" HorizontalAlignment="Center" Margin="0,10"/>
<TextBlock>
<Hyperlink
NavigateUri="https://github.com/negrusti/NMEA2000-Analyzer/"
RequestNavigate="Hyperlink_RequestNavigate">
https://github.com/negrusti/NMEA2000-Analyzer/
</Hyperlink>
</TextBlock>
<TextBlock x:Name="versionTextBlock" HorizontalAlignment="Center" Margin="0,5"/>
<TextBlock Text="© 2025 Grigory Morozov" HorizontalAlignment="Center" Margin="0,5"/>
<Button Content="Close" Width="80" HorizontalAlignment="Center" Margin="0,20,0,0" Click="CloseButton_Click" />
</StackPanel>
</Grid>
</Window>