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.

96 lines
3.4 KiB
XML

<UserControl
x:Class="XGL.Views.LanJu_User"
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:XGL.Views"
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
Width="1920"
Height="800"
Margin="0">
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="80" />
<RowDefinition Height="626" />
</Grid.RowDefinitions>
<Label
Grid.Row="0"
Width="175"
Height="37"
Margin="25,20,0,25"
HorizontalAlignment="Left"
VerticalAlignment="Center">
<TextBlock
FontSize="22"
FontWeight="Bold"
Text="人员打卡" />
</Label>
<Button
Grid.Row="0"
Width="90"
Height="44"
Margin="0,25,25,25"
HorizontalAlignment="Right"
VerticalAlignment="Center"
Background="#2B7EE6">
<TextBlock
FontSize="20"
Foreground="White"
Text="返回" />
</Button>
<StackPanel
Grid.Row="1"
Width="800"
Height="80"
Margin="25,0"
HorizontalAlignment="Left"
VerticalAlignment="Center"
Orientation="Horizontal">
<Button
Width="196"
Height="69"
HorizontalAlignment="Left"
VerticalAlignment="Bottom"
Background="White"
Click="Now_Click">
<TextBlock
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="28"
Text="当前人员" />
</Button>
<Button
Width="196"
Height="69"
HorizontalAlignment="Left"
VerticalAlignment="Bottom"
Background="White"
Click="Record_Click">
<TextBlock
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="28"
Text="打卡记录" />
</Button>
</StackPanel>
<ContentControl
x:Name="Window3"
Grid.Row="2"
Width="1920"
Height="626" />
</Grid>
</Canvas>
</Viewbox>
</UserControl>