LoginPage.xaml
732 字节
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:pages="clr-namespace:IndustrialControl.Pages"
x:Class="IndustrialControl.Pages.LoginPage"
Title="登录">
<Grid Padding="24" RowDefinitions="Auto,*">
<VerticalStackLayout Spacing="12">
<Label Text="联创数智管家" FontAttributes="Bold" FontSize="28"/>
<Entry Placeholder="请输入用户名" Text="{Binding UserName}"/>
<Entry Placeholder="请输入登录密码" IsPassword="True" Text="{Binding Password}"/>
<Button Text="登录" Command="{Binding LoginCommand}"/>
</VerticalStackLayout>
</Grid>
</ContentPage>