SplitView Menu in Universal Windows (UWP) – Part1
Hi All It’s been a while since I’ve posted anything, primarily because the WPF world had become very stagnant and uninteresting. After a brief flirtation with XAML in Xamarin, I am back with renewed...
View ArticleSplitView Menu in Universal Windows (UWP) – Part2
In part 1 (SplitView Menu Control – Part 1) I showed code for implementing my SplitView Menu control in a simple ‘standard’ scenario. As mentioned in the first part of this series, the ‘Universal...
View ArticleSplitView Menu in Universal Windows (UWP) – Part3
In part 1 (SplitView Menu Control – Part 1) I showed code for implementing my SplitView Menu control in a simple ‘standard’ scenario. In part 2 (SplitView Menu Control – Part 2) I showed code for...
View ArticleWPF – Accessing DataContext Within Grid Columns
Its a common enough scenario, you are writing the XAML for a data grid (maybe the WPF DataGrid, maybe the WPF ListView/GridView, or maybe a 3rd Party Grid component) which is within a WPF Window, Page...
View ArticleMVVM Dialogs with IDialogFactory
Here’s the problem – system Dialogs (MessageBox.Show) and custom Dialogs (Window.ShowDialog) dont fit very well into the MVVM design pattern, and it is notoriously hard to test ViewModels that need to...
View ArticleWPF – Enum ItemsSource With Custom Behavior
Hi All, I’m writing a post today about a common problem with MVVM and Enums. Sometimes you want a Selector control (ListBox, ComboBox) to bind to an Enum value in your ViewModel, with the Selector’s...
View Article