Borders, Frames scrollers

This commit is contained in:
2025-08-18 08:05:28 +02:00
parent ba8acd09e4
commit ebbea4c1d4
8 changed files with 170 additions and 98 deletions

View File

@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="AdventureWorks.MAUI.ViewsPartial.AddressView">
<Frame>
<StackLayout>
<Label Text="Address Information"
FontSize="Small"
FontAttributes="Bold" />
<BoxView Color="Gray"
HeightRequest="1"
HorizontalOptions="Fill"/>
<Grid RowDefinitions="Auto,Auto,Auto,Auto"
ColumnDefinitions="Auto,*"
Style="{StaticResource Grid.Page}">
<Label Grid.Row="0"
Text="Street"/>
<Entry Grid.Row="0"
Grid.Column="1"/>
<Label Grid.Row="1"
Text="City"/>
<Entry Grid.Row="1"
Grid.Column="1"
Text="" />
<Label Grid.Row="2"
Text="State/Province"/>
<Entry Grid.Row="2"
Grid.Column="1"
Text="" />
<Label Grid.Row="3"
Text="Postal Code"/>
<Entry Grid.Row="3"
Grid.Column="1"
Text="" />
</Grid>
</StackLayout>
</Frame>
</ContentView>