Today I faced a specific need withing a WPF application: I have a well-tested and already in production code which works well for a given user and I need to create an application to execute…
Tagged By tips
#HoloLens : launch a 3D (Holograms) app from a 2D #XAML app and going back to it #UWP
In this blog post I will show you how to create a 2D #XAML app which will be able to display a 3D view (holograms) and then how to go back to the 2D view…
WinRT exceptions : how to know what the hexadecimal error code means
When working with the WinRT SDK you somethimes get exceptions from it with only an hexadecimal code to help you understand what the error is. Often, when you look for it on Google/Bing, you end…
Windows Phone : localize your App name
When you build a Windows Phone App, you for sure take some time to translate it in several language. By default there is no easy way to translate the app name but you can do…
#WinRT : how to easily get the dominant color of a picture
“Content before Chrome” is the Leitmotif of Windows Store Apps. You’ll usually end up using a lot of images in your app and getting the dominant color of a picture may actually be useful. My…
Windows 8.1 : let’s discover the Scheduler of #WinJS
Windows 8.1 comes with a new feature in the WinJS SDK : a scheduler. Let’s see what it is and how to use it! In Windows 8, every job is nearly done as soon as…
[WinRT] How to get the language code actually used to resolve a resource
I am working on an app with a lot of different languages. This is really great because there is a lot more chances that the user get the app in its spoken tongue. You can…
Win8/XAML : how to create a TextBlock with clickables hyperlinks in it
Xaml is really powerful and you can build nearly any user interface you want with it. However it can be hard sometimes and in this post I will describe how you can create something I…
WinJS : use the same data in the zoomed out and zoomed in view.
The Semantic zoom let you display your data in a zoomed out and zoomed in way. It’s really fine when your data is grouped but sometimes you need to display a non-grouped data just in…
WP Toolkit : Adding a item in the SelectedItems collection of a LongListMultiSelector actually adds 2…
A quick blog post about a bug I encountered today with the LongListMultiSelector : adding 2 items in its SelectedItem property actually adds 2 items (twice the same) in the SelectedItem collection. This is quite…