🚧 Debut de la page Board
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
af6e9ec71c
commit
b4f27e8b0b
@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||||
x:Class="Trek_12.Views.PageBoard"
|
||||
Title="Board">
|
||||
<Grid RowDefinitions="*,auto">
|
||||
<Grid ColumnDefinitions="*,auto">
|
||||
<CollectionView ItemsSource="{Binding ListMap.OperationGrid}"
|
||||
ItemsLayout="HorizontalGrid,4"
|
||||
Grid.Column="1">
|
||||
<CollectionView.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<VerticalStackLayout>
|
||||
<Label Text="{Binding IsChecked}"/>
|
||||
</VerticalStackLayout>
|
||||
</DataTemplate>
|
||||
</CollectionView.ItemTemplate>
|
||||
</CollectionView>
|
||||
</Grid>
|
||||
</Grid>
|
||||
</ContentPage>
|
@ -0,0 +1,13 @@
|
||||
namespace Trek_12.Views;
|
||||
using Stub;
|
||||
|
||||
public partial class PageBoard : ContentPage
|
||||
{
|
||||
public Stub MyStub { get; set; } = new Stub();
|
||||
|
||||
public PageBoard()
|
||||
{
|
||||
InitializeComponent();
|
||||
BindingContext = MyStub;
|
||||
}
|
||||
}
|
Loading…
Reference in new issue