32 lines
2.3 KiB
XML
32 lines
2.3 KiB
XML
<Window xmlns:hc="https://handyorg.github.io/handycontrol" x:Class="智能仓储WCS管理系统.AboutView"
|
|
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:local="clr-namespace:智能仓储WCS管理系统"
|
|
mc:Ignorable="d"
|
|
Title="关于" Height="300" Width="400" ResizeMode="NoResize" FontSize="18"
|
|
Icon="/Resources/Logo.ico"
|
|
WindowStartupLocation="CenterScreen">
|
|
<Grid Background="White">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="130"/>
|
|
<RowDefinition Height="*"/>
|
|
</Grid.RowDefinitions>
|
|
<StackPanel x:Name="StackPanelInfo" Orientation="Horizontal">
|
|
<Image Margin="60,15,10,15" HorizontalAlignment="Left" Width="80" Height="80" Source="/Resources/Logo.png"></Image>
|
|
<!--盟讯-->
|
|
<TextBlock Margin="0,30" Text="{StaticResource AboutInfo1}" FontSize="28" FontFamily="YouYuan" Foreground="SteelBlue" FontWeight="UltraBold"></TextBlock>
|
|
<TextBlock Margin="-58,30" Text="{StaticResource AboutInfo2}" FontSize="28" FontFamily="YouYuan" VerticalAlignment="Bottom" Foreground="SteelBlue" FontWeight="UltraBold"></TextBlock>
|
|
<!--智能制造-->
|
|
<!--<TextBlock Margin="0,30" Text="智能制造" FontSize="28" FontFamily="YouYuan" Foreground="SteelBlue" FontWeight="UltraBold"></TextBlock>
|
|
<TextBlock Margin="-58,30" Text="引领未来" FontSize="28" FontFamily="YouYuan" VerticalAlignment="Bottom" Foreground="SteelBlue" FontWeight="UltraBold"></TextBlock>-->
|
|
</StackPanel>
|
|
<StackPanel Grid.Row="1">
|
|
<TextBlock Margin="5" Text="{Binding Name,FallbackValue=xxx程序}" FontSize="32" Foreground="DodgerBlue" HorizontalAlignment="Center"></TextBlock>
|
|
<TextBlock Margin="5" Text="{Binding Company,FallbackValue=重庆盟讯电子科技有限公司 @2030}" Grid.Row="1" FontSize="14" HorizontalAlignment="Center"></TextBlock>
|
|
<TextBlock Margin="5" Text="{Binding Ver,FallbackValue=v 1.0.0}" FontSize="14" Foreground="Orange" HorizontalAlignment="Center"></TextBlock>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|