Created
February 18, 2024 17:16
-
-
Save beginnerapps/045280a463c0f859262a1d50bce997f8 to your computer and use it in GitHub Desktop.
StartupPage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<view:ContentPageBase | |
x:Class="BingoMania.Features.Startup.StartupPage" | |
xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | |
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | |
xmlns:d="http://schemas.microsoft.com/dotnet/2021/maui/design" | |
xmlns:local="clr-namespace:BingoMania.Features.Startup" | |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
xmlns:view="clr-namespace:BingoMania.Framework.Views" | |
x:DataType="local:StartupPageViewModel" | |
x:TypeArguments="local:StartupPageViewModel" | |
mc:Ignorable="d"> | |
<StackLayout> | |
<Label Text="Please wait while application is loading through the startup process" /> | |
<Button Command="{Binding StartCommand}" Text="Start Application" /> | |
</StackLayout> | |
</view:ContentPageBase> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment