creation page ile avec les stubs et la navigation de la page MAIS problème avec initializecomponent()
parent
7ace799957
commit
3a957d346b
@ -1,46 +1,49 @@
|
|||||||
using Model.Stub;
|
using Model.Stub;
|
||||||
using Model;
|
using Model;
|
||||||
|
|
||||||
namespace Ohara;
|
namespace Ohara;
|
||||||
|
|
||||||
public partial class PageBestiaire : ContentPage
|
public partial class PageBestiaire : ContentPage
|
||||||
{
|
{
|
||||||
public PageBestiaire()
|
public PageBestiaire()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
List<Bestiaire> Lbest = StubBestiaire.RecupererBestiaire().ToList();
|
List<Bestiaire> Lbest = StubBestiaire.RecupererBestiaire().ToList();
|
||||||
|
|
||||||
|
|
||||||
listeBest.ItemsSource = Lbest;
|
listeBest.ItemsSource = Lbest;
|
||||||
}
|
}
|
||||||
private async void Hyperlink_Accueil(object sender, EventArgs e)
|
private async void Hyperlink_Accueil(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
await Navigation.PushAsync(new MainPage());
|
await Navigation.PushAsync(new MainPage());
|
||||||
}
|
}
|
||||||
|
|
||||||
private async void Hyperlink_FDD(object sender, EventArgs e)
|
private async void Hyperlink_FDD(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
await Navigation.PushAsync(new PageFDD());
|
await Navigation.PushAsync(new PageFDD());
|
||||||
}
|
|
||||||
|
|
||||||
private async void Hyperlink_Equip(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
await Navigation.PushAsync(new PageEquipage());
|
|
||||||
}
|
|
||||||
private async void Hyperlink_Carte(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
await Navigation.PushAsync(new PageCarte());
|
|
||||||
}
|
|
||||||
private async void Hyperlink_Bateau(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
await Navigation.PushAsync(new PageBateau());
|
|
||||||
}
|
|
||||||
|
|
||||||
private async void Hyperlink_Perso(object sender, EventArgs e)
|
|
||||||
{
|
|
||||||
await Navigation.PushAsync(new PagePersonnage());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private async void Hyperlink_Equip(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
await Navigation.PushAsync(new PageEquipage());
|
||||||
|
}
|
||||||
|
private async void Hyperlink_Carte(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
await Navigation.PushAsync(new PageCarte());
|
||||||
|
}
|
||||||
|
private async void Hyperlink_Bateau(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
await Navigation.PushAsync(new PageBateau());
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void Hyperlink_Perso(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
await Navigation.PushAsync(new PagePersonnage());
|
||||||
|
}
|
||||||
|
|
||||||
|
private async void Hyperlink_Ile(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
await Navigation.PushAsync(new PageIle());
|
||||||
|
}
|
||||||
}
|
}
|
@ -0,0 +1,143 @@
|
|||||||
|
<?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="Ohara.PageIle"
|
||||||
|
Title="PageIle"
|
||||||
|
BackgroundColor="#e2edf1">
|
||||||
|
|
||||||
|
<Grid>
|
||||||
|
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="2*" />
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="300" />
|
||||||
|
<ColumnDefinition Width="*" />
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<VerticalStackLayout BackgroundColor="#72a3b3" Grid.Row="0" Grid.Column="0" Spacing="10">
|
||||||
|
|
||||||
|
<Image Source="ohara2.png" HeightRequest="300" HorizontalOptions="Center" >
|
||||||
|
<Image.Clip>
|
||||||
|
<EllipseGeometry Center="150,90" RadiusX="80" RadiusY="80"/>
|
||||||
|
</Image.Clip>
|
||||||
|
</Image>
|
||||||
|
|
||||||
|
|
||||||
|
<Button Style="{StaticResource buttonMenu}" Text="Accueil" Clicked="Hyperlink_Accueil"/>
|
||||||
|
<Button Style="{StaticResource buttonMenu}" Text="Carte" Clicked="Hyperlink_Carte"/>
|
||||||
|
<Button Style="{StaticResource buttonMenu}" Text="Personnages" Clicked="Hyperlink_Perso"/>
|
||||||
|
<Button Style="{StaticResource buttonMenu}" Text="Fruits du démon" Clicked="Hyperlink_FDD"/>
|
||||||
|
<Button Style="{StaticResource buttonMenu}" Text="Bateaux" Clicked="Hyperlink_Bateau"/>
|
||||||
|
<Button Style="{StaticResource buttonMenu2}" Text="Îles"/>
|
||||||
|
<Button Style="{StaticResource buttonMenu}" Text="Bestiaire" Clicked="Hyperlink_Bestiaire"/>
|
||||||
|
<Button Style="{StaticResource buttonMenu}" Text="Équipages" Clicked="Hyperlink_Equip"/>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
<VerticalStackLayout Grid.Row="0" Grid.Column="1" Spacing="40">
|
||||||
|
<Grid BackgroundColor="#72a3b3" Padding="10" ColumnSpacing="50" >
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="10*"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Grid.ColumnDefinitions >
|
||||||
|
<ColumnDefinition Width="20*"/>
|
||||||
|
<ColumnDefinition Width="25*"/>
|
||||||
|
<ColumnDefinition Width="10*"/>
|
||||||
|
<ColumnDefinition Width="10*"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<SearchBar Placeholder="Rechercher..." BackgroundColor="#bfe5ef" Grid.Column="0"/>
|
||||||
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" Grid.Column="2">
|
||||||
|
<Label Text="Filtrer" HorizontalTextAlignment="Center" />
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
<Frame CornerRadius="20" BackgroundColor="#bfe5ef" BorderColor="#bfe5ef" Grid.Column="3">
|
||||||
|
<Label Text="Trier" HorizontalTextAlignment="Center" />
|
||||||
|
</Frame>
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
<ScrollView Orientation="Horizontal" HorizontalScrollBarVisibility="Always">
|
||||||
|
<CollectionView x:Name="listeIle" ItemsLayout="HorizontalList">
|
||||||
|
<CollectionView.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
|
||||||
|
<Grid Padding="50" ColumnSpacing="10">
|
||||||
|
<Grid.ColumnDefinitions>
|
||||||
|
<ColumnDefinition Width="400"/>
|
||||||
|
</Grid.ColumnDefinitions>
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="750"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
|
||||||
|
<Frame
|
||||||
|
CornerRadius="25"
|
||||||
|
BorderColor="#e2edf1"
|
||||||
|
IsClippedToBounds="True"
|
||||||
|
Padding="0"
|
||||||
|
HeightRequest="800"
|
||||||
|
WidthRequest="450">
|
||||||
|
<Image
|
||||||
|
Source="{Binding Image}"
|
||||||
|
|
||||||
|
Aspect="Fill"
|
||||||
|
/>
|
||||||
|
</Frame>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<Frame CornerRadius="20"
|
||||||
|
BorderColor="#72a3b3"
|
||||||
|
BackgroundColor="#72a3b3"
|
||||||
|
Margin="20, 50" Padding="15"
|
||||||
|
WidthRequest="275"
|
||||||
|
HeightRequest="150"
|
||||||
|
Grid.Row="0"
|
||||||
|
VerticalOptions="End">
|
||||||
|
|
||||||
|
|
||||||
|
<StackLayout Orientation="Vertical" Spacing="10" VerticalOptions="Center">
|
||||||
|
<Label
|
||||||
|
Text="{Binding Nom}"
|
||||||
|
FontAttributes="Bold"
|
||||||
|
FontSize="22"
|
||||||
|
TextColor="White"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
/>
|
||||||
|
<Label
|
||||||
|
Text="-----------------------------"
|
||||||
|
FontAttributes="Bold"
|
||||||
|
FontSize="20"
|
||||||
|
TextColor="White"
|
||||||
|
HorizontalOptions="Center"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Label
|
||||||
|
Text="Cliquez ici pour voir en détail"
|
||||||
|
FontAttributes="Bold,Italic"
|
||||||
|
FontSize="15"
|
||||||
|
TextColor="White"
|
||||||
|
TextDecorations="Underline"
|
||||||
|
HorizontalOptions="Center"/>
|
||||||
|
|
||||||
|
</StackLayout>
|
||||||
|
</Frame>
|
||||||
|
</Grid>
|
||||||
|
</DataTemplate>
|
||||||
|
</CollectionView.ItemTemplate>
|
||||||
|
</CollectionView>
|
||||||
|
</ScrollView>
|
||||||
|
</VerticalStackLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!--<Rectangle WidthRequest="200" HeightRequest="300" HorizontalOptions="Start" BackgroundColor="#72a3b3">
|
||||||
|
<Rectangle.Fill>
|
||||||
|
<LinearGradientBrush StartPoint="0,0.5" EndPoint="1,0.5">
|
||||||
|
<GradientStop Color="#cdffd8" Offset="0.0" />-->
|
||||||
|
<!--<GradientStop Color="#94b9ff" Offset="1.0" /></LinearGradientBrush></Rectangle.Fill></Rectangle>-->
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
|
||||||
|
|
||||||
|
</ContentPage>
|
After Width: | Height: | Size: 1.2 MiB |
After Width: | Height: | Size: 1.9 MiB |
After Width: | Height: | Size: 2.1 MiB |
Loading…
Reference in new issue