summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue1568.xaml
blob: 00a5a08e67678178765e54cfbaef168ae40fa928 (plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?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.TestCasesPages.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>