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.
24 lines
1.4 KiB
Plaintext
24 lines
1.4 KiB
Plaintext
|
2 years ago
|
<Window x:Class="XGL.Views.Classes"
|
||
|
|
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:XGL.Views"
|
||
|
|
mc:Ignorable="d"
|
||
|
|
Title="班次交接" Height="450" Width="800" WindowStartupLocation="CenterScreen" >
|
||
|
|
<Grid Background="Gray">
|
||
|
|
<Grid.RowDefinitions>
|
||
|
|
<RowDefinition Height="0.2*"/>
|
||
|
|
<RowDefinition Height="0.8*"/>
|
||
|
|
</Grid.RowDefinitions>
|
||
|
|
<Label Content="当前班次为:" FontSize="30" Margin="0,0,610,32" Foreground="White"></Label>
|
||
|
|
<Label Name="shift" Content="无" FontSize="30" Margin="170,0,460,32" Foreground="White"></Label>
|
||
|
|
<Border BorderThickness="3" Grid.Row="1" Margin="67,113,527,174" BorderBrush="Aqua" CornerRadius="4">
|
||
|
|
<Button Grid.Row="1" Content="上 班" FontSize="30" BorderThickness="0" Background='#2B7EE6' Foreground="White" Click="Button_Click" ></Button>
|
||
|
|
</Border>
|
||
|
|
<Border BorderThickness="3" Grid.Row="1" Margin="491,113,103,174" BorderBrush="Aqua" CornerRadius="4">
|
||
|
|
<Button Grid.Row="1" Content="下 班" FontSize="30" BorderThickness="0" Background='#2B7EE6' Foreground="White" Click="Button_Click_1"></Button>
|
||
|
|
</Border>
|
||
|
|
</Grid>
|
||
|
|
</Window>
|