Posts by Alexandre Zollinger Chohfi • 151 points
6 posts
-
1
votes1
answer598
viewsA: How do I navigate between pages on windows phone 8.1 using mvvmcross?
The ideal would be to create a class called Baseview (or something like that) that extends to Mvxwindowspage and inherit your views from this Baseview, not Mvxwindowspage. Your Baseview class would…
-
3
votes1
answer401
viewsA: Windowsphone - How does one event "inside" another?
Since Selectionchanged and Click are events with different parameters, you cannot call it the 2nd way you showed it, via XAML. You can, if it suits you, call the method among other methods, as…
-
2
votes2
answers88
viewsA: Is it possible to develop with Codename One for Windows Phone 8?
Renan, your answer is wrong. ALL apps that work on Windows Phone 7 work on Windows Phone 8. If you (as a developer) want, you can choose to upload a package that will be downloaded by users of WP7.x…
codename-oneanswered Alexandre Zollinger Chohfi 151 -
2
votes1
answer126
viewsA: How to modify the default page transition on Windows Phone 8.1?
On Windows Phone 8.1 there are 2 types of apps, Windows Phone Store Apps 8.1 and Windows Phone Silverlight 8.1. If you’re using Windows Phone Silverlight 8.1, page transitions equal 8.0 with…
-
2
votes2
answers206
viewsA: Messagebox error
Windows Phone is not like Windows Forms. Your code should be something close to that: private async void reset_Click(object sender, RoutedEventArgs e) { const string message = "Voce deseja voltar o…
-
2
votes2
answers136
viewsA: Devexpress spin - Culture info
If the components of the spinedit are using the . Net default, just change, preferably for the entire execution of the site, in the global.asax: CultureInfo culture =…