Changes are inevitable in large projects. This article introduces some useful techniques to minimize compilation time during development.
Articles Written by Zeeshan Amjad
Switching to MVVM
Model-View-ViewModel (MVVM) is a proven design pattern used heavily in many WPF / Silverlight applications. This article focuses on implementing MVVM on existing applications rather than starting a new application. In this article we are going to see how we can take small steps towards MVVM.
Recursion Primer Using C++ Part 3
Zeeshan examines all of the Recursion dimensions (compile time/runtime and structure/generative) with the five different types of recursion (Nested Recursion, Binary Recursion, Mutual Recursion, Tail Recursion and Linear Recursion).
Writing a More Robust Debugger Visualizer in WPF
In this new installment, you'll discover how to write an even more robust version of a debugger visualizer using WIndows Presentation Foundation (WPF). You'll learn how to visualize additional data types as well as how to change the value of variables.
Writing a Debugger Visualizer in WPF: Part 1
There are lots of good examples of creating a debugger visualizer for Visual Studio, but one thing that this is common is that all of them are written using Windows form. It is, however, possible to make a debugger visualizer in WPF, and thus display data in a much more sophisticated way using modern technology.
Using WPF with Managed C++
Discuss on WPF using Managed C++. Review a sample loan amortization program.