Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<?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"
xmlns:mycode="clr-namespace:MauiApp1"
xmlns:notes="clr-namespace:MauiApp1"
x:Class="MauiApp1.MainPage"
BackgroundColor="White">
<VerticalStackLayout Margin="30, 60, 30, 30">
<Label Text="Welcome to Build a Business"
HorizontalOptions="Center"
TextColor="{x:Static Member=notes:SharedResources.FontColor}"
FontSize="{x:Static Member=mycode:MainPage.MyFontSize}"
FontAttributes="Bold" />
<Label Text="By pressing the 'New' button below you can select a template and begin planning your business."
TextColor="{x:Static Member=notes:SharedResources.FontColor}" />
<Grid RowDefinitions="Auto, Auto, Auto, *, Auto, Auto, Auto"
ColumnDefinitions ="*, *"
Padding="40">
<Button Grid.Column="10"
Grid.Row="10"
Text="New"
WidthRequest="100"
TextColor="{x:Static Member=notes:SharedResources.FontColor}"
Background="{x:Static Member=notes:SharedResources.BackgroundColor}"
Clicked="OnNewButtonClicked" />
</Grid>
</VerticalStackLayout>
</ContentPage>