You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
3.8 KiB
XML

<UserControl
x:Class="XGLFinishPro.Views.LanJu_Index"
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"
Width="1920"
Height="800"
mc:Ignorable="d">
<Viewbox Stretch="Fill">
<Canvas
Width="1920"
Height="800"
Background="#F2F3F5">
<Grid
Canvas.Top="-10"
Width="1920"
Height="800"
Margin="0">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="480" />
<ColumnDefinition Width="480" />
<ColumnDefinition Width="480" />
<ColumnDefinition Width="480" />
</Grid.ColumnDefinitions>
<Button
Grid.Column="0"
Width="352"
Height="158"
Margin="64,64,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Background="#797979"
Click="Prepare_Click">
<TextBlock
Width="175"
Height="37"
Margin="144,61,33,60"
FontSize="28"
FontWeight="Bold"
Foreground="LightBlue"
Text="生产准备" />
</Button>
<Button
Grid.Column="1"
Width="352"
Height="158"
Margin="64,64,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Background="#797979"
Click="Operator_Click">
<TextBlock
Width="175"
Height="37"
Margin="144,61,33,60"
FontSize="28"
FontWeight="Bold"
Foreground="LightBlue"
Text="生产面板" />
</Button>
<Button
Grid.Column="2"
Width="352"
Height="158"
Margin="64,64,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Background="#797979">
<TextBlock
Width="175"
Height="37"
Margin="144,61,33,60"
FontSize="28"
FontWeight="Bold"
Foreground="LightBlue"
Text="其他功能" />
</Button>
<Button
Grid.Column="3"
Width="352"
Height="158"
Margin="64,64,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Background="#797979"
Click="User_Click">
<TextBlock
Width="175"
Height="37"
Margin="144,61,33,60"
FontSize="28"
FontWeight="Bold"
Foreground="LightBlue"
Text="人员打卡" />
</Button>
<ContentControl
x:Name="Window"
Grid.Column="0"
Grid.ColumnSpan="4"
Width="1920"
Height="800" />
</Grid>
</Canvas>
</Viewbox>
</UserControl>