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.
44 lines
2.1 KiB
44 lines
2.1 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"
|
|
xmlns:toolkit="http://schemas.microsoft.com/dotnet/2022/maui/toolkit"
|
|
xmlns:shape="Microsoft.Maui.Controls.Shapes"
|
|
x:Class="Vues.SearchMob">
|
|
<!--BackgroundImageSource="backcollection.jpg"-->
|
|
<Grid ColumnDefinitions="Auto, *">
|
|
<Grid RowDefinitions="Auto, *" RowSpacing="25" WidthRequest="300">
|
|
<HorizontalStackLayout Grid.Row="0">
|
|
<ImageButton Source="exit.png" WidthRequest="20"/>
|
|
<SearchBar Placeholder="Rechercher un monstre"
|
|
PlaceholderColor="DimGray"
|
|
CancelButtonColor="DimGray"/>
|
|
</HorizontalStackLayout>
|
|
<ListView x:Name="ListV" ItemsSource="{Binding ListMonsters}" Grid.Row="1" ItemTapped="OnClick">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<ViewCell>
|
|
<VerticalStackLayout>
|
|
<Image Source="{Binding ImageLink}"/>
|
|
</VerticalStackLayout>
|
|
</ViewCell>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</Grid>
|
|
<Grid Grid.Column="1" RowDefinitions="*,*,*,*" BindingContext="{Binding SelectedItem, Source={x:Reference ListV}}">
|
|
<Label Text="{Binding Name}"/>
|
|
<HorizontalStackLayout>
|
|
<!-- Image du mob -->
|
|
<Image Source="{Binding ImageLink}" MaximumHeightRequest="400"/>
|
|
|
|
<!-- Caractéristiques -->
|
|
<Frame Margin="40">
|
|
<Label
|
|
Text="{Binding Description, StringFormat=Description : \{0\}}"
|
|
FontSize="Medium">
|
|
</Label>
|
|
</Frame>
|
|
</HorizontalStackLayout>
|
|
</Grid>
|
|
</Grid>
|
|
</ContentPage> |