-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMainPage.xaml
18 lines (16 loc) · 911 Bytes
/
MainPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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:myviews="clr-namespace:MauiCustomEntryHandler"
x:Class="MauiCustomEntryHandler.MainPage">
<ScrollView>
<VerticalStackLayout
WidthRequest="500" HeightRequest="400"
Spacing="25" Padding="30,0" BackgroundColor="LightBlue"
HorizontalOptions="Center" VerticalOptions="Center">
<Label Text="Hello, Maui!" FontSize="24" HorizontalOptions="Center" />
<myviews:MyEntry Text="test" FontSize="20" UnderlineThickness="8" UnderlineColor="Purple" BackgroundColor="HotPink" />
<myviews:MyEntry UnderlineThickness="0" BackgroundColor="LightGray" />
</VerticalStackLayout>
</ScrollView>
</ContentPage>