47 lines
1.6 KiB
XML
47 lines
1.6 KiB
XML
<Window
|
|
x:Class="WPFSerialAssistant.About"
|
|
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:local="clr-namespace:WPFSerialAssistant"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
Name="AboutWindow"
|
|
Title="关于串口助手"
|
|
Width="350"
|
|
Height="200"
|
|
Icon="/icon/HexagonNew.ico"
|
|
ResizeMode="NoResize"
|
|
WindowStartupLocation="CenterScreen"
|
|
mc:Ignorable="d">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="50*" />
|
|
<RowDefinition Height="150*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
<StackPanel Grid.Row="0" Margin="5">
|
|
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
EF3串口调试助手
|
|
</TextBlock>
|
|
<TextBlock HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
WPF Serial Assistant
|
|
</TextBlock>
|
|
</StackPanel>
|
|
<Grid Grid.Row="1">
|
|
<StackPanel
|
|
Grid.Column="0"
|
|
Width="300"
|
|
Margin="10">
|
|
<TextBlock Margin="5" TextWrapping="Wrap">本串口工具旨在配合EF3电路板完成光栅点缓存数据的解析,读取和保存工作</TextBlock>
|
|
<TextBlock Margin="5">版本编号:Verison 0.1</TextBlock>
|
|
<TextBlock Margin="5">更新日期:2022.10.08</TextBlock>
|
|
<!--<TextBlock Margin="5">软件作者:Christopher Lee</TextBlock>-->
|
|
<!--<TextBlock Margin="5">反馈邮箱:christopherlee1993@outlook.com</TextBlock>-->
|
|
<!--<TextBlock Margin="5">小小说明:开放源码,采用MIT协议。望共同学习进步。</TextBlock>-->
|
|
</StackPanel>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|