mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-29 06:26:02 +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)
|
||||
__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"
|
||||
x:Class="AideDeJeu.Views.MainPage"
|
||||
x:Name="This"
|
||||
IsPresented="False"
|
||||
Title="Aide de Jeu"
|
||||
>
|
||||
<MasterDetailPage.Master>
|
||||
<ContentPage Title=" ">
|
||||
|
|
|
|||
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue