整合管理器应用端(MAUI跨平台)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
3.1 KiB

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="SunlightAggregationTerminal.View.LogPage"
Title="LogPage">
<VerticalStackLayout Padding="30" Spacing="20"
VerticalOptions="Center"
HorizontalOptions="Center"
MaximumWidthRequest="600">
<Grid RowDefinitions="Auto, *" ColumnDefinitions="*, Auto">
<HorizontalStackLayout VerticalOptions="Center" Spacing="15">
<!-- 信息 -->
<VerticalStackLayout Grid.Row="0"
Grid.Column="0"
VerticalOptions="Center">
<HorizontalStackLayout VerticalOptions="Center">
<Label Text="服务器:" FontSize="26" TextColor="Black" />
<Entry x:Name="Enterprise"
Text="IP"
FontSize="26"
TextColor="Gray"
WidthRequest="300"/>
</HorizontalStackLayout>
</VerticalStackLayout>
</HorizontalStackLayout>
<Button Grid.Row="0" Grid.Column="1"
Clicked="OnScanButtonClicked"
BackgroundColor="Transparent"
WidthRequest="60"
HeightRequest="60" >
<Button.ImageSource>
<!-- 设置图标 -->
<FileImageSource File="lucidescanline.png" />
</Button.ImageSource>
</Button>
</Grid>
<HorizontalStackLayout VerticalOptions="Center">
<Label Text="用户:" FontSize="26" TextColor="Black" />
<!-- 用户名输入 -->
<Entry x:Name="UsernameEntry"
Placeholder="请输入用户名"
FontSize="26"
WidthRequest="380"/>
</HorizontalStackLayout>
<HorizontalStackLayout VerticalOptions="Center">
<Label Text="密码:" FontSize="26" TextColor="Black"/>
<!-- 密码输入 -->
<Entry x:Name="PasswordEntry"
Placeholder="请输入密码"
IsPassword="True"
FontSize="26"
WidthRequest="380"/>
</HorizontalStackLayout>
<!-- 登录按钮 -->
<Button Text="登 录"
BackgroundColor="#512BD4"
TextColor="White"
HeightRequest="50"
WidthRequest="100"
CornerRadius="10"
Margin="0,10,0,0"
Clicked="Log_Clicked"/>
</VerticalStackLayout>
</ContentPage>