Click here to Skip to main content
15,886,919 members
Articles / Desktop Programming / Windows Forms

Using ReactiveUI for WinForms MVVM Design

Rate me:
Please Sign up or sign in to vote.
4.69/5 (42 votes)
31 Jul 2018CPOL3 min read 117.2K   82   40
A brief example showing how to use the Reactive UI framework to perform a separation of concerns using MVVM.

Introduction

In this article, we will look at an elegant way to separate the UI concerns of the presentation layer of a WinForms application from the application business logic using a MVVM (Model-View-ViewModel) pattern. In this way, Test-Driven-Development (TDD) of the application can be facilitated.

Background

While reading an article by Peter Vogel (see VSMagazine2014-05-01), I was reminded again of the difficulty WinForm application designers have working with modern design patterns. I have been searching for a long time for an easier way to accomplish what Brian Noyes appears to have accomplished with WinForms (see Composite Extensions for WinForms) without the contortions of using code borrowed from the Patterns and Practices Composite WPF Contrib library (http://compositewpfcontrib.codeplex.com/), which is difficult to follow and appears to have been abandoned (like so many things on the internet). However, the recent appearance of ReactiveUI promises to improve the development of WinForms applications. ReactiveUI is a Model-View-ViewModel framework that's used along with the Reactive Extensions library in constructing testable UIs.

Using the Code

First, the source code for this article is available at GitHub for those who wish to learn more.

Let’s go through a brief example of using ReactiveUI to construct a WinForms application that uses the MVVM pattern. I will be using Visual Studio 2017 Community Edition and the default WinForms template. Open up the main form created by the template and add the following controls:

  • Text label
  • Text box
  • OK button
  • StatusStrip Status string

Image 1

Use the NuGet Package Manager under the Tools menu and add the reactiveui-winforms package to the solution. This package will add all the necessary references and components we will need.

Image 2

Due to refactoring of the new System.Reactive 4.0 namespaces, I found I had to also add references to the following NuGet packages:

Image 3

At this point, since the view is partially constructed, we construct the ViewModel that will process data and events. Let's set up properties with backing fields for the controls on the view and one command for the button.

C#
//
// ViewModel example
//
namespace WinFormMVVM.ViewModels
{
	public class HomeViewModel : ReactiveUI.ReactiveObject
	{
		string ModelString;
		public string EnteredText
		{
			get { return ModelString; }
			set { this.RaiseAndSetIfChanged( ref ModelString, value);}
		}

		string statusString = "";
		public string Status
		{
			get{return statusString;}
			set{this.RaiseAndSetIfChanged(ref statusString,value);}
		}

		public ReactiveCommand OKCmd { get; private set; }

		public HomeViewModel
		{
            OKCmd = ReactiveCommand.Create(() => { Status = EnteredText + " is saved."; }
                , this.WhenAny(vm => vm.EnteredText, s => !string.IsNullOrWhiteSpace(s.Value)));
		}
	}
}

The ViewModel inherits from the ReactiveObject class. This class grants your classes access to the RaiseAndSetIfChanged helper function. This conveniently wires up your properties to the INotifyPropertyChanged/IObservable interfaces, so in one step, you have a class that can be data bound AND observed using Reactive Extensions.

In the constructor for the ViewModel, we set up the conditions under which something happens, i.e., when the OK button is clicked. The first parameter to the Create function is the Action we wish to take when when the button is clicked, which will update the status message. It is our subscription to the event. The second parameter is the canExecute parameter, an IObservable that is returned from the WhenAny extension, which allows you to observe whenever one or more properties on an object have changed. Note that the ViewModel has no references to any UI elements, which allows us to perform testing without worrying about the particular UI technology used.

The astute reader will notice that at this point there is no link between the View and the ViewModel. Let's take care of that now that the ViewModel is built. Edit the View to inherit from the interface IViewFor<T>, where T is our ViewModel.

C#
namespace WinFormMVVM
{
	public partial class HomeView : Form, IViewFor<HomeViewModel>
	{
		InitializeComponent();
		VM = new HomeViewModel();

		// Bind the view to the ReactiveUI viewmodel
		this.Bind(VM, x => x.EnteredText, x => x.textBoxMyInput.Text);
		this.Bind(VM, x => x.Status, x => x.toolStripMyStatusString.Text);
		this.BindCommand(VM, x => x.OKCmd, x => x.btnOK);
	}

	public HomeViewModel VM { get; set; }

	object IViewFor.ViewModel
	{
		get { return VM; }
		set { VM = (HomeViewModel)value; }
	}

	HomeViewModel IViewFor<HomeViewModel>.ViewModel
	{
		get { return VM; }
		set { VM = value; }
	}
}

What I really like about using this framework is the availability of intellisense in writing the bindings between the UI elements and the ViewModel properties. The absence of "magic strings" typical in XAML or regular WinForm data bindings, that really makes code maintenance difficult, is especially welcome.

Points of Interest

The present state of the ReactiveUI framework is not documented as well as might be hoped for. It took a fair amount of time to ferret out the meaning from outdated examples and code breaking changes. I hope this example will serve to inspire others to dig into ReactiveUI and provide more examples and better documentation.

History

  • 2014-Jul-29: Initial draft
  • 2017-Sep-29: Fixed broken link
  • 2018-Jul-31: Updated to most recently available NuGet packages, added GitHub link.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) AcmeSource
United States United States
You're not a real programmer until you have toggled binary into a PDP-11 and memorized Z80 op codes so you can program without an assembler. I've spilled more punch card decks than coffee cups and still managed to run light without overbyte into today's world. An eclectic programmer with experience in C, C#, Python, LabView, VB, SQL, and many other things, I happen to believe HTML5 and JavaScript are boring.

Comments and Discussions

 
GeneralRe: C# Solution in github Pin
donvanm25-Jul-17 11:40
donvanm25-Jul-17 11:40 
QuestionProblem implementing the partial class HomeView Pin
nrodriguez20143-Dec-14 9:21
nrodriguez20143-Dec-14 9:21 
GeneralMy vote of 3 Pin
BAIJUMAX17-Sep-14 21:23
professionalBAIJUMAX17-Sep-14 21:23 
GeneralGreat article. Pin
ahmedshuhel4-Aug-14 23:15
ahmedshuhel4-Aug-14 23:15 
QuestionIs it free for commercial use ?? Pin
Tridip Bhattacharjee4-Aug-14 21:33
professionalTridip Bhattacharjee4-Aug-14 21:33 
AnswerRe: Is it free for commercial use ?? Pin
ahmedshuhel4-Aug-14 23:00
ahmedshuhel4-Aug-14 23:00 
GeneralMy vote of 5 Pin
taras_b4-Aug-14 20:16
taras_b4-Aug-14 20:16 
GeneralRe: My vote of 5 Pin
Some D00d6-Aug-14 8:45
Some D00d6-Aug-14 8:45 
HaHa! agreed! Excellent example! 5 from me as well.
GeneralMy vote of 1 Pin
ashwini37374-Aug-14 19:42
ashwini37374-Aug-14 19:42 
GeneralRe: My vote of 1 Pin
taras_b4-Aug-14 20:15
taras_b4-Aug-14 20:15 
GeneralRe: My vote of 1 Pin
sam.hill5-Aug-14 4:49
sam.hill5-Aug-14 4:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.