1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-29 06:26:02 +00:00

Correctifs UWP

This commit is contained in:
Yan Maniez 2018-05-01 16:38:11 +02:00
parent 9de0b41bc1
commit 8b3fdf0522
4 changed files with 12 additions and 10 deletions

5
.gitignore vendored
View file

@ -258,4 +258,7 @@ paket-files/
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
*.pyc
/AideDeJeu/com.nioux.aidedejeu.apk
/clerc.json
/AideDeJeu/AideDeJeu.Android/zipalign.bat

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -4,8 +4,6 @@
xmlns:local="clr-namespace:AideDeJeu.Views"
x:Class="AideDeJeu.Views.MainPage"
x:Name="This"
IsPresented="False"
Title="Aide de Jeu"
>
<MasterDetailPage.Master>
<ContentPage Title=" ">

View file

@ -1,4 +1,5 @@
using Xamarin.Forms;
using System;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace AideDeJeu.Views
@ -11,19 +12,19 @@ namespace AideDeJeu.Views
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());
}
}
}