-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGif.xaml
24 lines (24 loc) · 1013 Bytes
/
Gif.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
<?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"
x:Class="giftest.Gif"
Title="Gif">
<ScrollView>
<Grid RowDefinitions="*,50">
<Grid x:Name="grid1" ColumnDefinitions="*,*,*">
<Grid.Resources>
<ResourceDictionary>
<Style TargetType="GraphicsView">
<Setter Property="Margin" Value="5"/>
</Style>
</ResourceDictionary>
</Grid.Resources>
</Grid>
<Grid Grid.Row="1" ColumnDefinitions="*,*,*">
<Button Text="1" Clicked="Button_Clicked"/>
<Button Text="3" Clicked="Button_Clicked_1" Grid.Column="1"/>
<Label x:Name="label1" Text="Clicked" Grid.Column="2"/>
</Grid>
</Grid>
</ScrollView>
</ContentPage>