root / GES_PAC / View / Controls / ChamberButtonView.xaml @ 9601eaf0
Historique | Voir | Annoter | Télécharger (1,134 ko)
1 | 12ddf7ef | lbihannic | <?xml version="1.0" encoding="utf-8" ?>
|
---|---|---|---|
2 | e837cdf1 | lbihannic | <ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui" |
3 | xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" |
||
4 | xmlns:vm="clr-namespace:GES_PAC.ViewModel.Controls" |
||
5 | x:Class="GES_PAC.View.Controls.ChamberButtonView" |
||
6 | x:Name="ChamberButtonControl" |
||
7 | x:DataType="vm:ChamberButtonViewModel"> |
||
8 | 12ddf7ef | lbihannic | |
9 | e837cdf1 | lbihannic | <Grid>
|
10 | <Button Text="{Binding ButtonText}" |
||
11 | Style="{StaticResource ChambreButtonStyle}" |
||
12 | Command="{Binding OnClickChamberCommand}" |
||
13 | CommandParameter="{Binding ChamberId}" |
||
14 | BackgroundColor="{Binding ButtonBackgroundColor}" |
||
15 | IsEnabled="{Binding ButtonIsEnabled}" /> |
||
16 | |||
17 | <Label Text="{Binding ButtonLabel}" |
||
18 | FontSize="12" |
||
19 | Margin="3" |
||
20 | HorizontalOptions="Start" |
||
21 | VerticalOptions="Start" /> |
||
22 | |||
23 | <Label Text="{Binding TimeIn}" |
||
24 | 9601eaf0 | lbihannic | TextColor="{Binding TimeColor}" |
25 | e837cdf1 | lbihannic | FontSize="12" |
26 | Margin="3" |
||
27 | HorizontalOptions="End" |
||
28 | VerticalOptions="Start" /> |
||
29 | </Grid>
|
||
30 | 12ddf7ef | lbihannic | </ContentView> |