|
|
|
|
<Window x:Class="Kingo.DataDTBJK.UCSystemSelect"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:datadtbjk="clr-namespace:Kingo.DataDTBJK"
|
|
|
|
|
mc:Ignorable="d" ResizeMode="NoResize"
|
|
|
|
|
Height="517" Width="983" WindowStyle="None" Loaded="Window_Loaded" MouseLeftButtonDown="Window_MouseLeftButtonDown" WindowStartupLocation="CenterScreen">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Border Grid.ColumnSpan="7" Grid.Row="1" BorderThickness="1" BorderBrush="Black" Background="Transparent">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.Background>
|
|
|
|
|
<ImageBrush ImageSource="/Images/SystemSelect/indexbg.jpg"/>
|
|
|
|
|
</Grid.Background>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
<RowDefinition Height="2*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="4*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="4*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="4*"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Border Grid.Row="0" CornerRadius="5,0,0,5" Margin="0" ToolTip="关闭" Grid.ColumnSpan="7" BorderThickness="1,0,0,1" BorderBrush="#FF333338" HorizontalAlignment="Right" VerticalAlignment="Top" Background="White" Height="27" Width="30" MouseLeftButtonDown="Border_MouseLeftButtonDown">
|
|
|
|
|
<TextBlock Text="X" Foreground="#FF333338" FontSize="15" VerticalAlignment="Center" HorizontalAlignment="Center"></TextBlock>
|
|
|
|
|
</Border>
|
|
|
|
|
<TextBlock x:Name="txtSubTitle" Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="5" HorizontalAlignment="Center" VerticalAlignment="Bottom" FontSize="35" Text="今 奥 单 图 斑 建 库 软 件 V1.0"/>
|
|
|
|
|
<datadtbjk:UC_MenuButton x:Name="btnYCL" Margin="8,17,8,128" Cursor="Hand" Grid.Column="1" Grid.Row="1" MenuBackground="#FFD32E5F" IconBackground="#EB656A" ImgPath="distributeddatabase.png" MenuText="图斑预处理" MouseLeftButtonDown="BtnYCL_MouseLeftButtonDown" Grid.RowSpan="2"/>
|
|
|
|
|
<datadtbjk:UC_MenuButton x:Name="btnJK" Margin="8,17,8,128" Cursor="Hand" Grid.Column="3" Grid.Row="1" MenuBackground="#7DDEE1" IconBackground="#FF25A2A6" ImgPath="protection.png" MenuText="单图斑变更" MouseLeftButtonDown="BtnJK_MouseLeftButtonDown" Grid.RowSpan="2"/>
|
|
|
|
|
<datadtbjk:UC_MenuButton x:Name="btnZJ" Margin="8,17,8,128" Cursor="Hand" Grid.Column="5" Grid.Row="1" MenuBackground="#FF9F70" IconBackground="#FFBF5C2D" ImgPath="systemmonitoring.png" MenuText="年度变更建库" MouseLeftButtonDown="BtnZJ_MouseLeftButtonDown" Grid.RowSpan="2"/>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|