You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
<?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="MangaMap.Views.createOeuvre"
|
|
Background="{StaticResource Secondary}">
|
|
|
|
<VerticalStackLayout>
|
|
|
|
<Label Text="Création d'une nouvelle série" FontSize="Title" Margin="0,0,0,20" TextColor="#ffffff" HorizontalOptions="Center"/>
|
|
|
|
<Button Text="Sélectionner une image" Clicked="SelectImageClicked" Margin="0,0,0,10"/>
|
|
|
|
<Grid ColumnDefinitions="*,*" Margin="10" ColumnSpacing="10">
|
|
<Entry x:Name="nameEntry" Placeholder="Nom" Margin="0,0,0,10" Style="{StaticResource Champs}"/>
|
|
|
|
<Entry Grid.Column="1" x:Name="typeEntry" Placeholder="Type" Margin="0,0,0,10" Style="{StaticResource Champs}"/>
|
|
</Grid>
|
|
|
|
<Entry x:Name="descriptionEntry" Placeholder="Description" Margin="0,0,0,10" Style="{StaticResource Champs}"/>
|
|
|
|
<Entry x:Name="nbEpisodeEntry" Placeholder="Nombre d'épisodes" Margin="0,0,0,10" Style="{StaticResource Champs}"/>
|
|
|
|
<Button Text="Ajouter série" Style="{StaticResource Bouton}" Clicked="AddClicked"/>
|
|
|
|
</VerticalStackLayout>
|
|
</ContentPage> |