Tag Archives: Mini-Tutorial
Searching in Windows 8
Windows 8 Store Applications can take advantage of the shared “Charms” that you see when you swipe in from the right edge of your Windows 8 device (or press Win-C). The top charm is searching and it provides tremendous functionality … Continue reading
Windows 8 & Data Binding. Part 5–Binding to Lists
In Part 4 of this mini-series on data binding we looked at Data Conversion. Today we look at binding a UI Element to a list of objects. The trick in binding to a list, is to teach the control how … Continue reading
Windows 8 & Data Binding. Part 4–Data Conversion
In Part 3 of this little mini-series on data binding in Windows 8 we looked at Element Binding. Today, we’ll take a look at Data Conversion. At times the data in your business object (the source for your binding) and … Continue reading
Windows 8–Data binding Part 2
In my previous blog post I introduced data binding. It worked, but there was no mechanism for updating. Updating comes in two flavors, and these are often confused by folks new to databinding: Someone else updates the underlying data; we’d … Continue reading
Windows 8 Primer–Data Binding (Part 1)
Data-binding is often thought of as an advanced topic, but there really is no reason for that. data-binding is Critical to writing XAML applications Not very difficult to learn A very powerful technique
Exploring Win8 Metro: The RichEditBox & FilePickers
Win8 provides a number of controls in the XAML toolkit that are easy to use and that provide a great deal of flexibility and power. I’ll be writing about some of these controls now and then, starting with some simple … Continue reading
C# 5–Making INotifyPropertyChanged Easier
There are times when I think my friends in the C# team are just listening to me gripe before adding a cool new feature that solves the problem. (I have never quite outgrown the assumption that the world revolves around … Continue reading
GridView Control in Windows 8
While ListBox and ComboBox continue to work in Windows 8, their use is discouraged. They are not designed well for touch input and there are new and more powerful controls in WinRT that you can use instead; specifically the ListView … Continue reading
The Accelerometer and the Emulator
A Windows Phone Tutorial The Windows Phone 7.1 SDK (formerly known as Mango) includes a new extended emulator that allows you to see the effect of moving the phone when using the accelerometer. We’ll draw a dot in the center … Continue reading
Playing A Sound, Simplified
Windows Phone Tutorial In a previous posting I discussed how to play a sound using a background process. That is great when you need the sound to continue playing even if you leave your application. But much of the time … Continue reading
Calling Navigate From The View Model
Windows Phone Mini-Tutorial In the third part of the MVVM Light Toolkit Soup To Nuts (part 1 is here) I started with an application that had two pages, and a button on the first that was to cause a navigation … Continue reading
Vibrating the phone
Windows Phone Tutorial A little vibration added to your application can be just the haptic feedback needed. It turns out that vibration is absurdly easy to add; so much so that discussions of adding vibration typically come with the caveat … Continue reading