15 lines
784 B
XML
15 lines
784 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage x:Class="MauiAppStock.Views.AddAppareilPiecePage"
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml">
|
|
<StackLayout Padding="10">
|
|
<Label Text="Associer une Pièce à l'Appareil" FontSize="24" HorizontalOptions="Center"/>
|
|
<Label Text="Sélectionnez une pièce:"/>
|
|
<Picker x:Name="PiecesPicker" Title="Pièces"/>
|
|
<StackLayout Orientation="Horizontal" VerticalOptions="Center">
|
|
<Label Text="Recommandée ?" VerticalOptions="Center"/>
|
|
<Switch x:Name="RecommandeeSwitch"/>
|
|
</StackLayout>
|
|
<Button Text="Enregistrer" Clicked="OnSaveClicked"/>
|
|
</StackLayout>
|
|
</ContentPage> |