HomePage.xaml
1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="IndustrialControl.Pages.HomePage"
Title="仓储作业">
<ContentPage.ToolbarItems>
<ToolbarItem Text="退出" Clicked="OnLogoutClicked" />
</ContentPage.ToolbarItems>
<VerticalStackLayout Padding="24" Spacing="16">
<Frame Style="{StaticResource BlueCardStyle}">
<Label Text="物料入库" FontSize="18" TextColor="White" VerticalTextAlignment="Center"/>
<Frame.GestureRecognizers>
<TapGestureRecognizer Tapped="OnInMat" NumberOfTapsRequired="1" />
</Frame.GestureRecognizers>
</Frame>
<Frame Style="{StaticResource BlueCardStyle}">
<Label Text="生产入库" FontSize="18" TextColor="White" VerticalTextAlignment="Center"/>
<Frame.GestureRecognizers>
<TapGestureRecognizer Tapped="OnInProd" NumberOfTapsRequired="1" />
</Frame.GestureRecognizers>
</Frame>
<Frame Style="{StaticResource BlueCardStyle}">
<Label Text="物料出库" FontSize="18" TextColor="White" VerticalTextAlignment="Center"/>
<Frame.GestureRecognizers>
<TapGestureRecognizer Tapped="OnOutMat" NumberOfTapsRequired="1" />
</Frame.GestureRecognizers>
</Frame>
<Frame Style="{StaticResource BlueCardStyle}">
<Label Text="成品出库/装货" FontSize="18" TextColor="White" VerticalTextAlignment="Center"/>
<Frame.GestureRecognizers>
<TapGestureRecognizer Tapped="OnOutFinished" NumberOfTapsRequired="1" />
</Frame.GestureRecognizers>
</Frame>
</VerticalStackLayout>
</ContentPage>