| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <Window x:Class="SHJX.Service.View.View.AboutForm"
- 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:SHJX.Service.View.View"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- Title="关于系统"
- Width="600"
- Height="400"
- AllowsTransparency="True"
- Background="Transparent"
- ResizeMode="NoResize"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- mc:Ignorable="d">
- <Grid Margin="5">
- <Grid.RowDefinitions>
- <RowDefinition Height="2*" />
- <RowDefinition Height="1*" />
- <RowDefinition />
- <RowDefinition />
- <RowDefinition />
- </Grid.RowDefinitions>
- <Border Background="#99CCCC"
- BorderBrush="#66CCCC"
- Grid.Row="0"
- Grid.RowSpan="5"
- BorderThickness="2"
- CornerRadius="15" Margin="0,0,0,1">
- <Border.Effect>
- <DropShadowEffect Color="#CCCCCC"
- BlurRadius="10"
- ShadowDepth="0"
- Opacity="1">
- </DropShadowEffect>
- </Border.Effect>
- </Border>
- <Grid Grid.Row="0">
- <Image HorizontalAlignment="Center"
- VerticalAlignment="Center"
- Source="/SHJX.Service.Resource;component/Resources/Logo.png" />
- </Grid>
- <Grid Grid.Row="1">
- <TextBlock HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="30"
- FontWeight="Black"
- Foreground="#036FB7"
- Text="水质COD全自动智能分析工作站" />
- </Grid>
- <StackPanel Grid.Row="2"
- HorizontalAlignment="Center"
- Orientation="Horizontal">
- <TextBlock HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="20"
- FontWeight="Bold"
- Foreground="#036FB7"
- Text="版本:" />
- <TextBlock HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="20"
- FontWeight="Bold"
- Foreground="#036FB7"
- Text="23.08.24.01" />
- </StackPanel>
- <UniformGrid Grid.Row="3"
- Columns="1"
- Rows="2">
- <StackPanel HorizontalAlignment="Center"
- Orientation="Horizontal">
- <TextBlock HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="20"
- FontWeight="Bold"
- Foreground="#036FB7"
- Text="联系方式:" />
- <TextBlock HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="20"
- FontWeight="Bold"
- Foreground="#036FB7"
- Text="021-57790908" />
- </StackPanel>
- <StackPanel HorizontalAlignment="Center"
- Orientation="Horizontal">
- <TextBlock HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="20"
- FontWeight="Bold"
- Foreground="#036FB7"
- Text="公司网址:" />
- <TextBlock HorizontalAlignment="Center"
- VerticalAlignment="Center"
- FontFamily="幼圆"
- FontSize="20"
- FontWeight="Bold"
- Foreground="#036FB7"
- Text="https://www.tissuelyser.com" />
- </StackPanel>
- <TextBlock Margin="0,10"
- HorizontalAlignment="Center"
- VerticalAlignment="Bottom"
- FontFamily="幼圆"
- Foreground="#036FB7"
- Text="{Binding Path=AboutText}" />
- </UniformGrid>
- <Grid Grid.Row="0"
- Grid.RowSpan="4"
- Background="Transparent"
- MouseDown="Grid_MouseDown" />
- </Grid>
- </Window>
|