schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Window x:Class="XHandler.View.About.SystemInformation"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:local="clr-namespace:XHandler.View"
             xmlns:str="clr-namespace:XHandler.Properties"
             xmlns:ctrls="clr-namespace:XHandler.Controls"
             mc:Ignorable="d" WindowStartupLocation = "CenterOwner"
             d:DesignHeight="510" d:DesignWidth="760" WindowStyle="None" AllowsTransparency="True" ResizeMode="NoResize" Background="#00FFFFFF"
             Loaded="Window_Loaded" PreviewKeyDown="Window_PreviewKeyDown">
    <Grid >
        <Border Background="{DynamicResource blueBrush}" CornerRadius="10 10 10 10" BorderThickness="2" BorderBrush="{DynamicResource blueBrush}">
            <Grid Margin="2,0,2,3">
                <Grid.RowDefinitions>
                    <RowDefinition Height="40"/>
                    <RowDefinition Height="auto"/>
                </Grid.RowDefinitions>
                <Grid Grid.Row="0" >
                    <Border Grid.Row="0" Background="{DynamicResource blueBrush}" CornerRadius="10 10 0 0" BorderThickness="0">
                        <Grid>
                            <TextBlock Text="{x:Static str:Resources.strSystemInfoBase}" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="20 0" FontSize="20"
                                       Foreground="White" FontWeight="Bold"/>
                            <Button Content="×" x:Name="btnClose" HorizontalAlignment="Right" VerticalAlignment="Center" VerticalContentAlignment="Center" Margin="10 0" FontSize="28" Width="40" Height="40"
                                    FontWeight="Bold" Foreground="White" Style="{DynamicResource BlueButtonStyle}" Background="{DynamicResource blueBrush}" Visibility="Visible" Click="btnClose_Click"/>
                        </Grid>
                    </Border>
                </Grid>
                <Grid Grid.Row="1" Background="White" x:Name="gdSetContent1" Height="465">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="*"></RowDefinition>
                        <RowDefinition Height="50"></RowDefinition>
                    </Grid.RowDefinitions>
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="*"></ColumnDefinition>
                        <ColumnDefinition Width="*"></ColumnDefinition>
                        <ColumnDefinition Width="*"></ColumnDefinition>
                    </Grid.ColumnDefinitions>
                    <Border Grid.Row="0" Grid.Column="0" Grid.ColumnSpan="3" BorderBrush="LightGray" BorderThickness="1" CornerRadius="8" Margin="30 10 30 10" IsEnabled="True">
                        <Grid>
                            <Grid.RowDefinitions>
                                <RowDefinition Height="40"></RowDefinition>
                                <RowDefinition Height="40"></RowDefinition>
                                <RowDefinition Height="*"></RowDefinition>
                            </Grid.RowDefinitions>
                            <Grid.ColumnDefinitions>
                                <ColumnDefinition Width="*"></ColumnDefinition>
                                <ColumnDefinition Width="*"></ColumnDefinition>
                                <ColumnDefinition Width="*"></ColumnDefinition>
                            </Grid.ColumnDefinitions>
                            <TextBlock Text="{x:Static str:Resources.strSystemVersion}" Grid.Row="0" Grid.Column="0" FontSize="16" HorizontalAlignment="Center" Margin="10"></TextBlock>
                            <TextBlock Text="" x:Name="tbxVersionInfo" Grid.Row="0" Grid.Column="1" FontSize="16" HorizontalAlignment="Left" Margin="10"></TextBlock>
                            <TextBlock Text="{x:Static str:Resources.strSystemInfo}" Grid.Row="1" Grid.Column="0" FontSize="16" HorizontalAlignment="Center" Margin="10"></TextBlock>
                            <TextBlock Text="{x:Static str:Resources.strSystemInfoContent}" TextWrapping="Wrap" Grid.Row="2" Grid.Column="0" Grid.ColumnSpan="3" FontSize="16" HorizontalAlignment="Left" Margin="80,20,20,0"></TextBlock>
                        </Grid>
                    </Border>
                    <TextBlock Text="{x:Static str:Resources.strSystemCompany}" Grid.Row="1" Grid.ColumnSpan="3" FontSize="16" HorizontalAlignment="Center" Margin="10"></TextBlock>
                </Grid>
            </Grid>
        </Border>
    </Grid>
</Window>