18 lines
1.1 KiB
XML
18 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<toolkit:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="GMCabsDriverAssistantSolution.Views.LoginErrorAlertDialogPage"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
Size="300,300"
|
|
Color="Transparent">
|
|
<Frame BackgroundColor="White" CornerRadius="10">
|
|
<StackLayout Orientation="Vertical">
|
|
<StackLayout VerticalOptions="CenterAndExpand">
|
|
<Label Text="Cannot work further as the same credential is currently using in a tablet, Press OK to Exit" VerticalTextAlignment="Center" VerticalOptions="CenterAndExpand" HorizontalOptions="CenterAndExpand" FontSize="20"/>
|
|
</StackLayout>
|
|
<StackLayout VerticalOptions="EndAndExpand" Margin="10,10,0,10">
|
|
<Button Text="Ok" Clicked="OkButton_Clicked" TextColor="White" FontSize="20" />
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</Frame>
|
|
</toolkit:Popup> |