|
|
@ -7,11 +7,26 @@
|
|
|
|
<Grid ColumnDefinitions="*,auto">
|
|
|
|
<Grid ColumnDefinitions="*,auto">
|
|
|
|
<CollectionView ItemsSource="{Binding ListMap[0].OperationGrid}"
|
|
|
|
<CollectionView ItemsSource="{Binding ListMap[0].OperationGrid}"
|
|
|
|
ItemsLayout="HorizontalGrid,5"
|
|
|
|
ItemsLayout="HorizontalGrid,5"
|
|
|
|
Grid.Column="1">
|
|
|
|
Grid.Column="1"
|
|
|
|
|
|
|
|
HeightRequest="250"
|
|
|
|
|
|
|
|
SelectionMode="Single"
|
|
|
|
|
|
|
|
Margin="20">
|
|
|
|
<CollectionView.ItemTemplate >
|
|
|
|
<CollectionView.ItemTemplate >
|
|
|
|
<DataTemplate>
|
|
|
|
<DataTemplate>
|
|
|
|
<VerticalStackLayout>
|
|
|
|
<VerticalStackLayout>
|
|
|
|
<Label Text="{Binding IsChecked}"/>
|
|
|
|
<Frame HasShadow="True"
|
|
|
|
|
|
|
|
BorderColor="DarkGray"
|
|
|
|
|
|
|
|
BackgroundColor="Transparent"
|
|
|
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
|
|
|
HeightRequest="50"
|
|
|
|
|
|
|
|
WidthRequest="50"
|
|
|
|
|
|
|
|
Padding="5">
|
|
|
|
|
|
|
|
<Label Text="{Binding IsChecked}"
|
|
|
|
|
|
|
|
FontAttributes="Bold"
|
|
|
|
|
|
|
|
FontSize="16"
|
|
|
|
|
|
|
|
HorizontalOptions="Center"
|
|
|
|
|
|
|
|
VerticalOptions="Center"/>
|
|
|
|
|
|
|
|
</Frame>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</VerticalStackLayout>
|
|
|
|
</DataTemplate>
|
|
|
|
</DataTemplate>
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|
</CollectionView.ItemTemplate>
|
|
|
|