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.
98 lines
3.4 KiB
98 lines
3.4 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<toolkit:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:contentView="clr-namespace:LivreLand.View.ContentViews"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
x:Class="LivreLand.View.ContentViews.PopupHomePlusButtonView"
|
|
HorizontalOptions="End"
|
|
VerticalOptions="Start">
|
|
|
|
<Grid BackgroundColor="{DynamicResource PopupBackground}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="10"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
<RowDefinition Height="auto"/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid Grid.Row="0"
|
|
Margin="10,5,10,5">
|
|
<Label Text="Ajouter un livre"
|
|
Style="{StaticResource MasterStateBookText}"/>
|
|
</Grid>
|
|
|
|
<contentView:SeparatorEntireView Grid.Row="1"/>
|
|
|
|
<Grid Grid.Row="2"
|
|
Margin="10,5,10,5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Text="Scanner un code-barres"
|
|
Style="{StaticResource HomeButtonText}"
|
|
Grid.Column="0"/>
|
|
</Grid>
|
|
|
|
<contentView:SeparatorEntireView Grid.Row="3"/>
|
|
|
|
<Grid Grid.Row="4"
|
|
Margin="10,5,10,5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Text="Scanner des codes-barres"
|
|
Style="{StaticResource HomeButtonText}"
|
|
Grid.Column="0"/>
|
|
</Grid>
|
|
|
|
<Grid BackgroundColor="{DynamicResource Gray}"
|
|
Grid.Row="5"/>
|
|
|
|
<Grid Grid.Row="6"
|
|
Margin="10,5,10,5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Text="Rechercher en ligne"
|
|
Style="{StaticResource HomeButtonText}"
|
|
Grid.Column="0"/>
|
|
<Image Source="magnifying_glass.png"
|
|
Grid.Column="2">
|
|
<Image.Behaviors>
|
|
<toolkit:IconTintColorBehavior TintColor="Black"/>
|
|
</Image.Behaviors>
|
|
</Image>
|
|
</Grid>
|
|
|
|
<contentView:SeparatorEntireView Grid.Row="7"/>
|
|
|
|
<Grid Grid.Row="8"
|
|
Margin="10,5,10,5">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="auto"/>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Text="Saisir l'ISBN"
|
|
Style="{StaticResource HomeButtonText}"
|
|
Grid.Column="0"/>
|
|
</Grid>
|
|
</Grid>
|
|
|
|
</toolkit:Popup>
|