maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Issue1568.xaml

54 строки
1.6 KiB
XML

<?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="Xamarin.Forms.Controls.Issues.Issue1568">
<StackLayout Orientation="Vertical">
<StackLayout
x:Name="_stackToolbar"
Orientation="Horizontal">
<Button
x:Name="_btnExit"
Text="&lt; Exit"
Command="{Binding ExitCommand}" />
<Button
x:Name="_btnSelectOrg"
Text="Select Org"
Command="{Binding SelectOrgCommand}" />
<Button
x:Name="_btnSelectStartInterval"
Text="Select Start Date"
Command="{Binding SelectStartIntervalCommand}" />
<Button
x:Name="_btnReload"
Text="Reload Schedule"
Command="{Binding ReloadScheduleCommand}" />
<Button
x:Name="_btnSave"
Text="Save Schedule"
Command="{Binding SaveScheduleCommand}" />
</StackLayout>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="Auto" />
</Grid.ColumnDefinitions>
<BoxView
x:Name="_scheduleGrid"
Grid.Column="0"
Color="Red"
HorizontalOptions="Fill"
VerticalOptions="Fill" />
<BoxView
x:Name="_shiftEditor"
Grid.Column="1"
Color="Blue"
WidthRequest="300"
HorizontalOptions="Fill"
VerticalOptions="Fill" />
</Grid>
</StackLayout>
</ContentPage>