-
Notifications
You must be signed in to change notification settings - Fork 0
/
MainPage.xaml
34 lines (31 loc) · 1.12 KB
/
MainPage.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage
x:Class="MauiApp1.MainPage"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
<Grid ColumnDefinitions="*" RowDefinitions="auto, *">
<ContentView
Grid.Row="0"
Grid.Column="0"
BackgroundColor="Red"
HeightRequest="48">
<HorizontalStackLayout>
<Button x:Name="_SwitchVO" Clicked="CVChange_Clicked" Text="CV: End" />
<Button Clicked="New_Clicked" Text="Add 5" />
<Button Clicked="Remove_Clicked" Text="Remove Last" />
<Button
x:Name="_Header"
Clicked="Header_Clicked"
Text="H: Off" />
<Button
x:Name="_Footer"
Clicked="Footer_Clicked"
Text="F: Off" />
</HorizontalStackLayout>
</ContentView>
<CollectionView
x:Name="_CV"
Grid.Row="1"
VerticalOptions="End" />
</Grid>
</ContentPage>