BusyIndicator for Windows Store Apps in C# / XAML

Preface The BusyIndicator for Windows Store apps is a variation of the Busy-Indicating Dialog for Windows Store apps. The motivation for creating such a control is almost the same. No such a control is available. And I want to make sure the user cannot start a new task while a …

Busy-Indicating Dialog for Windows Store Apps in C# / XAML

Preface Some of you might know the BusyIndicator from the WPF Toolkit or from Silverlight. I was using this control in Silverlight to disable user interaction while the application was performing some long running operations. This makes it really easy to make sure the user will not start a new …

Simple and Generic ICommand Implementation for Usage in XAML

Preface The Commanding Overview says “Commanding is an input mechanism in Windows Presentation Foundation (WPF) which provides input handling at a more semantic level than device input. Examples of commands are the Copy, Cut, and Paste operations found on many applications.” Well, one should extent the definition and mention Windows …

Unit-Testing of Private Async Methods with Visual Studio

Description Given there is the need to unit-test a private async method. The class to be tested might look like this: public ClassWithPrivateAsyncMethod { // Some stuff private async Task PrivateMethodAsync ( string input ) { // Call some async framework method var result = await SomeFrameworkMethodAsync(input); // do something …

MDI / Multiple Tabs Flat Navigation App Bar in Windows Store Apps

Summary The Windows 8 User Experience Guidelines mentions two different navigation designs: the hierarchical and the flat system. As said in the guidelines, most Windows Store apps use the hierarchical system. But I needed a flat navigation. And in addition, I needed a way to implement a Multiple Document Interface …

Microsoft Advertising Services AdControl Error Handling in XAML/C#

Preface The Do’s + Don’ts of the Advertising SDK say “DO plan for times when no ads are available.” The links of that item leads to the ErrorCode enumeration and a rudimentarily error handling sample, writing text to debug output. In this post, I will show an error handling where …

Implement Settings Popup Pages for Windows Store Apps

Preface No, this is not the first sample to be found in the internet on this topic. Anyway, I decided to add another one because the two I was looking at (see links below) gave good ideas, but did not satisfied me at all. Changes to App.xaml.cs To begin, new …

Use OpenFileDialog and FileBrowserDialog in WPF

WPF does not contain a OpenFileDialog or FileBrowserDialog. Nevertheless, I needed them in a WPF application. Searching the web, I found several approaches. One published on GitHub (https://github.com/tillias/wpFolderPicker) implements a new control for folder browsing. But I wanted a “cheap” solution. And found the starting point here: WPF OpenFileDialog and …

Microsoft Advertising Services AdControl Transition in XAML/C#

Preface According to the documentation, AdControls are hosted in a WebView control. For some reasons I was not able to figure out, WebView controls do not slide in when a page loads (or pop in, whatever the correct wording is). This means that your AdControl will not slide in neither. …

Configure Microsoft Advertising Services’ AdControl using XAML/C#

Preface The Microsoft Advertising SDK for Windows 8 allows developers to show ads in their apps. When you look at the walkthrough for putting ads in an app using XAML/C#, you can see that you have to set the ApplicationId and AdUnitId property of each AdControl control in your app. …