13 lines
778 B
XML
13 lines
778 B
XML
<Window x:Class="CriPakGUI.WindowAboutGUI"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
Title="关于 GUI" Height="300" Width="395" WindowStyle="ToolWindow" ResizeMode="NoResize" Icon="Resources/1.ico">
|
|
<Grid>
|
|
<ScrollViewer HorizontalAlignment="Left" Height="210" Margin="10,10,0,0" VerticalAlignment="Top" Width="369">
|
|
<TextBlock x:Name="textblock0" TextWrapping="WrapWithOverflow" Background="WhiteSmoke" IsHyphenationEnabled="True"/>
|
|
</ScrollViewer>
|
|
<Button x:Name="button_Close" Content="关闭" HorizontalAlignment="Left" Margin="152,243,0,0" VerticalAlignment="Top" Width="75" Click="button_Close_Click"/>
|
|
|
|
</Grid>
|
|
</Window>
|