-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAboutWindow.xaml
More file actions
29 lines (26 loc) · 1.8 KB
/
Copy pathAboutWindow.xaml
File metadata and controls
29 lines (26 loc) · 1.8 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
<Window x:Class="NetIsolatePlus.AboutWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="About NetIsolate+" SizeToContent="WidthAndHeight"
WindowStyle="None" Background="Transparent" AllowsTransparency="True"
ResizeMode="NoResize" ShowInTaskbar="False" Topmost="True"
WindowStartupLocation="CenterOwner"> <!-- center on main window -->
<Border CornerRadius="12" Background="#0099FF" BorderBrush="#000" BorderThickness="1" Padding="16" MouseLeftButtonDown="DragWindow">
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<StackPanel Orientation="Vertical" Margin="4" >
<Image Source="pack://application:,,,/Assets/logo.png" Width="350" Height="auto" Stretch="Uniform" HorizontalAlignment="Center" Margin="0,0,0,8"/>
<TextBlock Text="NetIsolate+" FontSize="20" FontWeight="Bold" HorizontalAlignment="Left"/>
<TextBlock x:Name="VersionText" Text="Version 1.0" FontSize="11" Foreground="#444" HorizontalAlignment="Left" Margin="0,2,0,10"/>
<TextBlock Text="1-click network adapter isolation, instant toggles and status Windows." TextAlignment="Center" Foreground="#333" Margin="0,0,0,8"/>
<TextBlock Text="© Tensioncore Administration Services 2026" Foreground="#000" FontSize="12" TextAlignment="Center"/>
</StackPanel>
<StackPanel Grid.Row="1" Orientation="Horizontal" HorizontalAlignment="Right">
<Button Content="Close" Style="{StaticResource PillButtonStyle}" Click="Close_Click" />
</StackPanel>
</Grid>
</Border>
</Window>