From dbba91cf3780008c5112670efb9d85a44ce5b43b Mon Sep 17 00:00:00 2001 From: cldupland Date: Fri, 15 Nov 2019 17:25:50 +0100 Subject: [PATCH] Drag and Drop suite --- TheGameExtreme/view/MainPage.xaml.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TheGameExtreme/view/MainPage.xaml.cs b/TheGameExtreme/view/MainPage.xaml.cs index a90a17e..6ca5974 100644 --- a/TheGameExtreme/view/MainPage.xaml.cs +++ b/TheGameExtreme/view/MainPage.xaml.cs @@ -66,14 +66,14 @@ namespace TheGameExtreme.view //viewmodel.PlayerChanged += OnPlayerChanged; //Alert.SetBinding(Label.TextProperty, new Binding("Alert", source: viewmodel)); - //pseudo.SetBinding(Label.TextProperty, new Binding("Pseudo", source: viewmodel)); + pseudo.SetBinding(Label.TextProperty, new Binding("Pseudo", source: viewmodel)); inflateHand(); } - void OnCanvasViewPaintSurface(object sender, SKPaintSurfaceEventArgs args) + void OnCanvasViewPaintSurface(object sender, SKPaintSurfaceEventArgs args) // Faire plusieurs canvas { SKImageInfo info = args.Info; SKSurface surface = args.Surface; @@ -84,7 +84,7 @@ namespace TheGameExtreme.view // Display the bitmap canvas.SetMatrix(matrix); canvas.DrawBitmap(bitmap, new SKPoint()); - canvas.DrawBitmap(bitmap2, new SKPoint(500, 500)); + //canvas.DrawBitmap(bitmap2, new SKPoint(500, 500)); }