diff --git a/Sources/Ohara/AppShell.xaml b/Sources/Ohara/AppShell.xaml
index 5637476..647a34f 100644
--- a/Sources/Ohara/AppShell.xaml
+++ b/Sources/Ohara/AppShell.xaml
@@ -13,7 +13,7 @@
diff --git a/Sources/Ohara/MainPage.xaml b/Sources/Ohara/MainPage.xaml
index 43e3adf..f4c0b60 100644
--- a/Sources/Ohara/MainPage.xaml
+++ b/Sources/Ohara/MainPage.xaml
@@ -25,8 +25,8 @@
-
-
+
+
diff --git a/Sources/Ohara/MainPage.xaml.cs b/Sources/Ohara/MainPage.xaml.cs
index 43334ca..701ad37 100644
--- a/Sources/Ohara/MainPage.xaml.cs
+++ b/Sources/Ohara/MainPage.xaml.cs
@@ -18,5 +18,13 @@ public partial class MainPage : ContentPage
{
await Navigation.PushAsync(new PageEquipage());
}
+ private async void Hyperlink_Perso(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PagePersonnage());
+ }
+ private async void Hyperlink_Carte(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PageCarte());
+ }
}
diff --git a/Sources/Ohara/PageCarte.xaml b/Sources/Ohara/PageCarte.xaml
index e97e6c6..b4354d3 100644
--- a/Sources/Ohara/PageCarte.xaml
+++ b/Sources/Ohara/PageCarte.xaml
@@ -22,14 +22,14 @@
-
+
-
-
+
+
-
+
diff --git a/Sources/Ohara/PageCarte.xaml.cs b/Sources/Ohara/PageCarte.xaml.cs
index 43e42ca..84cc32d 100644
--- a/Sources/Ohara/PageCarte.xaml.cs
+++ b/Sources/Ohara/PageCarte.xaml.cs
@@ -6,4 +6,28 @@ public partial class PageCarte : ContentPage
{
InitializeComponent();
}
+ private async void Hyperlink_Acceuil(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new MainPage());
+ }
+
+ private async void Hyperlink_FDD(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PageFDD());
+ }
+
+ private async void Hyperlink_Equip(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PageEquipage());
+ }
+
+ private async void Hyperlink_Perso(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PagePersonnage());
+ }
+
+ private void Button_Clicked(object sender, EventArgs e)
+ {
+
+ }
}
\ No newline at end of file
diff --git a/Sources/Ohara/PageEquipage.xaml b/Sources/Ohara/PageEquipage.xaml
index c147af6..f577084 100644
--- a/Sources/Ohara/PageEquipage.xaml
+++ b/Sources/Ohara/PageEquipage.xaml
@@ -22,8 +22,8 @@
-
-
+
+
diff --git a/Sources/Ohara/PageEquipage.xaml.cs b/Sources/Ohara/PageEquipage.xaml.cs
index e650a78..5fe053b 100644
--- a/Sources/Ohara/PageEquipage.xaml.cs
+++ b/Sources/Ohara/PageEquipage.xaml.cs
@@ -22,4 +22,13 @@ public partial class PageEquipage : ContentPage
{
await Navigation.PushAsync(new MainPage());
}
+ private async void Hyperlink_Perso(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PagePersonnage());
+ }
+
+ private async void Hyperlink_Carte(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PageCarte());
+ }
}
\ No newline at end of file
diff --git a/Sources/Ohara/PageFDD.xaml b/Sources/Ohara/PageFDD.xaml
index 8d60200..7c01c9c 100644
--- a/Sources/Ohara/PageFDD.xaml
+++ b/Sources/Ohara/PageFDD.xaml
@@ -25,8 +25,8 @@
-
-
+
+
diff --git a/Sources/Ohara/PageFDD.xaml.cs b/Sources/Ohara/PageFDD.xaml.cs
index d4aff2b..426599f 100644
--- a/Sources/Ohara/PageFDD.xaml.cs
+++ b/Sources/Ohara/PageFDD.xaml.cs
@@ -29,4 +29,13 @@ public partial class PageFDD : ContentPage
{
await Navigation.PushAsync(new PageEquipage());
}
+
+ private async void Hyperlink_Perso(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PagePersonnage());
+ }
+ private async void Hyperlink_Carte(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new PageCarte());
+ }
}
\ No newline at end of file
diff --git a/Sources/Ohara/PagePersonnage.xaml b/Sources/Ohara/PagePersonnage.xaml
index f1ec3ec..cda7693 100644
--- a/Sources/Ohara/PagePersonnage.xaml
+++ b/Sources/Ohara/PagePersonnage.xaml
@@ -22,14 +22,14 @@
-
-
+
+
-
+
-
+
diff --git a/Sources/Ohara/PagePersonnage.xaml.cs b/Sources/Ohara/PagePersonnage.xaml.cs
index f7c7b3c..c0df5ba 100644
--- a/Sources/Ohara/PagePersonnage.xaml.cs
+++ b/Sources/Ohara/PagePersonnage.xaml.cs
@@ -14,4 +14,23 @@ public partial class PagePersonnage : ContentPage
listePerso.ItemsSource = perso;
}
+
+ private async void Hyperlink_Acceuil(object sender, EventArgs e)
+ {
+ await Navigation.PushAsync(new MainPage());
+ }
+
+ private async void Hyperlink_FDD(object sender, EventArgs e)
+ {
+ 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());
+ }
}
\ No newline at end of file