|
- <Window
- x:Class="DosingSystem.View.MainWindow"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:control="clr-namespace:BPASmartClient.CustomResource.UserControls;assembly=BPASmartClient.CustomResource"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:DosingSystem"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:pry="clr-namespace:BPASmartClient.CustomResource.UserControls;assembly=BPASmartClient.CustomResource"
- Title="MainWindow"
- Width="800"
- Height="450"
- AllowsTransparency="True"
- Background="{x:Null}"
- Opacity="0.8"
- Topmost="False"
- WindowStartupLocation="CenterScreen"
- WindowStyle="None"
- mc:Ignorable="d">
- <Grid>
-
- <Grid.RowDefinitions>
- <RowDefinition Height="50" />
- <RowDefinition />
- </Grid.RowDefinitions>
-
- <!--#region 标题栏设置-->
- <Border
- x:Name="MoveBorder"
- Height="50"
- VerticalAlignment="Top"
- Background="#0C2349"
- BorderBrush="#55ffffff"
- BorderThickness="0,0,0,1">
-
- <StackPanel Orientation="Horizontal">
- <Image Margin="15,5,0,5" Source="pack://application:,,,/BPASmartClient.CustomResource;component/Image/HBL.png" />
- <TextBlock
- Name="tbTitle"
- Margin="20,0"
- HorizontalAlignment="Left"
- VerticalAlignment="Center"
- FontSize="18"
- Foreground="White"
- Text="配料演示系统" />
- </StackPanel>
-
-
- </Border>
-
- <UniformGrid
- Width="150"
- Height="50"
- HorizontalAlignment="Right"
- Columns="3">
- <Button
- Name="ButMin"
- Content=""
- Style="{StaticResource TitleBarStyle}" />
- <Button
- Name="ButMax"
- Content=""
- Style="{StaticResource TitleBarStyle}" />
- <Button
- Name="ButClose"
- Content=""
- Style="{StaticResource TitleBarStyle}" />
- </UniformGrid>
- <!--#endregion-->
-
-
-
- </Grid>
- </Window>
|