|
|
|
@ -0,0 +1,33 @@ |
|
|
|
|
<?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="XamarinStudy.Views.SampleStackLayoutPage"> |
|
|
|
|
<ContentPage.Content> |
|
|
|
|
<StackLayout Orientation="Vertical" BackgroundColor="Azure"> |
|
|
|
|
<Label Text="Label1" BackgroundColor="Red" |
|
|
|
|
VerticalOptions="CenterAndExpand" |
|
|
|
|
HorizontalOptions="CenterAndExpand" /> |
|
|
|
|
<Label Text="Label2" BackgroundColor="Orange" |
|
|
|
|
VerticalOptions="CenterAndExpand" |
|
|
|
|
HorizontalOptions="CenterAndExpand" /> |
|
|
|
|
<Label Text="Label3" BackgroundColor="Yellow" |
|
|
|
|
VerticalOptions="CenterAndExpand" |
|
|
|
|
HorizontalOptions="CenterAndExpand" /> |
|
|
|
|
<StackLayout Orientation="Horizontal" BackgroundColor="DarkSlateBlue" Padding="20"> |
|
|
|
|
<Button Text="Button1"/> |
|
|
|
|
<Button Text="Button2"/> |
|
|
|
|
<Button Text="Button3"/> |
|
|
|
|
</StackLayout> |
|
|
|
|
<StackLayout Orientation="Horizontal" BackgroundColor="GreenYellow" Padding="10 50"> |
|
|
|
|
<Button Text="Button1"/> |
|
|
|
|
<Button Text="Button2"/> |
|
|
|
|
<Button Text="Button3"/> |
|
|
|
|
</StackLayout> |
|
|
|
|
<StackLayout Orientation="Horizontal" BackgroundColor="Green" Margin="5"> |
|
|
|
|
<Button Text="Button1"/> |
|
|
|
|
<Button Text="Button2"/> |
|
|
|
|
<Button Text="Button3"/> |
|
|
|
|
</StackLayout> |
|
|
|
|
</StackLayout> |
|
|
|
|
</ContentPage.Content> |
|
|
|
|
</ContentPage> |