mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 15:06:06 +00:00
Correctifs UWP
This commit is contained in:
parent
9de0b41bc1
commit
8b3fdf0522
4 changed files with 12 additions and 10 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
|
@ -258,4 +258,7 @@ paket-files/
|
||||||
|
|
||||||
# Python Tools for Visual Studio (PTVS)
|
# Python Tools for Visual Studio (PTVS)
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
|
/AideDeJeu/com.nioux.aidedejeu.apk
|
||||||
|
/clerc.json
|
||||||
|
/AideDeJeu/AideDeJeu.Android/zipalign.bat
|
||||||
|
|
|
||||||
BIN
AideDeJeu/AideDeJeu.Android/google-play-badge.png
Normal file
BIN
AideDeJeu/AideDeJeu.Android/google-play-badge.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
|
|
@ -4,8 +4,6 @@
|
||||||
xmlns:local="clr-namespace:AideDeJeu.Views"
|
xmlns:local="clr-namespace:AideDeJeu.Views"
|
||||||
x:Class="AideDeJeu.Views.MainPage"
|
x:Class="AideDeJeu.Views.MainPage"
|
||||||
x:Name="This"
|
x:Name="This"
|
||||||
IsPresented="False"
|
|
||||||
Title="Aide de Jeu"
|
|
||||||
>
|
>
|
||||||
<MasterDetailPage.Master>
|
<MasterDetailPage.Master>
|
||||||
<ContentPage Title=" ">
|
<ContentPage Title=" ">
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
using Xamarin.Forms;
|
using System;
|
||||||
|
using Xamarin.Forms;
|
||||||
using Xamarin.Forms.Xaml;
|
using Xamarin.Forms.Xaml;
|
||||||
|
|
||||||
namespace AideDeJeu.Views
|
namespace AideDeJeu.Views
|
||||||
|
|
@ -11,19 +12,19 @@ namespace AideDeJeu.Views
|
||||||
InitializeComponent ();
|
InitializeComponent ();
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnSpellsClicked()
|
async void OnSpellsClicked(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Navigation.PushAsync(new SpellsPage());
|
await Navigation.PushAsync(new SpellsPage());
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnMonstersClicked()
|
async void OnMonstersClicked(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Navigation.PushAsync(new MonstersPage());
|
await Navigation.PushAsync(new MonstersPage());
|
||||||
}
|
}
|
||||||
|
|
||||||
void OnAboutClicked()
|
async void OnAboutClicked(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
Navigation.PushAsync(new AboutPage());
|
await Navigation.PushAsync(new AboutPage());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue