HomePage.xaml 1.8 KB
<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>