forked from aosoft/Xamarin.Forms.WinForms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPage2.xaml
25 lines (25 loc) · 1.11 KB
/
Page2.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
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="WinFormsTestApp.Page2">
<ContentPage.Content>
<ScrollView Orientation="Both">
<Frame OutlineColor="Red" CornerRadius="8" WidthRequest="2048" HeightRequest="2048" />
</ScrollView>
<!--<Frame
OutlineColor="Red"
BackgroundColor="Yellow"
CornerRadius="8">
<SearchBar HeightRequest="20" />
<Image Source="https://assets-cdn.github.com/images/modules/logos_page/GitHub-Logo.png" Aspect="AspectFill"/>
<Grid>
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition />
</Grid.RowDefinitions>
<ProgressBar Grid.Row="0" Progress="{Binding Source={x:Reference slider}, Path=Value}" />
<Slider Grid.Row="1" Value="0" Minimum="0" Maximum="1" x:Name="slider" />
</Grid>
</Frame>-->
</ContentPage.Content>
</ContentPage>