WPF with MVVM: From the Trenches - Presentation Materials

by Brent 10. April 2010 14:37

If you were at my talk at Twin Cities Code Camp 8, I hope you found it useful.  I realize that it was a lot of information presented fairly quickly, so I am providing my slide deck along with the entire demo solution (including unit tests) for you to check out at your own pace.

Slide Deck

Demo Application: Movies.zip

Using WPF’s ContentControl to Switch Between Editable and Read-Only Mode

by Brent 4. March 2010 15:59

I’ve been working with WPF a lot lately for a client project and I’ve learned some pretty cool tricks along the way.  I am planning to do a bunch of posts describing many of these tricks in the near future.  The first cool trick I will be talking about is how to make a control that switches between editable mode and read-only mode using only XAML, kind of.

I say ‘kind of’ because we will have some code to make it happen, but not in the code-behind.  Rather than use a code-behind, we will be leveraging the Model-View-ViewModel (MVVM) design pattern to keep our code separate and testable.

Let’s dive right into the code by taking a look at the view model.  Since we will be leveraging WPF’s awesome data binding, we need to prepare the view model to allow WPF to keep track of property changes.  To do this, our view model will implement INotifyPropertyChanged.  Doing so will allow the WPF binding engine to listen for changes and update the view accordingly.

public class SampleViewModel : INotifyPropertyChanged
{
    #region INotifyPropertyChanged Members

    public event PropertyChangedEventHandler PropertyChanged;

    #endregion

    private void NotifyPropertyChanged(String propertyName)
    {
        if (PropertyChanged != null)
        {
            var args = new PropertyChangedEventArgs(propertyName);
            PropertyChanged(this, args);
        }
    }
}

You’ll notice that I added a method called NotifyPropertyChanged.  This is just to simplify the process of raising the event from the property setters.

Next up we will set up the properties that the view will be binding to.  Our example is very simple, so there will only be two properties in the view model: IsReadOnly and Name.

private Boolean _IsReadOnly;
public Boolean IsReadOnly
{
    get { return _IsReadOnly; }
    set
    {
        _IsReadOnly = value;
        NotifyPropertyChanged("IsReadOnly");
    }
}

private String _Name = "Bob Lablaw";
public String Name
{
    get { return _Name; }
    set
    {
        _Name = value;
        NotifyPropertyChanged("Name");
    }
}

Notice that both of the setters make a call to NotifyPropertyChanged, giving the name of the respective property.  That is what will signal the binding engine to update anything that is bound to one of those two properties.

That’s it for the view model.  We’re keeping things simple.  Let’s move on to the view itself.  First things first, we need to set up the view model as the DataContext.

<Window x:Class="DataTemplatesTriggers.Window1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:vm="clr-namespace:DataTemplatesTriggers.ViewModels"
    Title="Window1" Height="300" Width="300">
    <Window.DataContext>
        <vm:SampleViewModel />
    </Window.DataContext>
</Window>

Next up we are going to set up some the style for the ContentControl.

<Window.Resources>
    <Style x:Key="NameStyle" TargetType="ContentControl">
        <Style.Triggers>
            <DataTrigger Binding="{Binding IsReadOnly}" Value="True">
                <Setter Property="ContentControl.Template">
                    <Setter.Value>
                        <ControlTemplate>
                            <Grid>
                                <Label Content="{Binding Name}" />
                            </Grid>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </DataTrigger>
            <DataTrigger Binding="{Binding IsReadOnly}" Value="False">
                <Setter Property="ContentControl.Template">
                    <Setter.Value>
                        <ControlTemplate>
                            <Grid>
                                <TextBox Text="{Binding Path=Name, UpdateSourceTrigger=PropertyChanged}" />
                            </Grid>
                        </ControlTemplate>
                    </Setter.Value>
                </Setter>
            </DataTrigger>
        </Style.Triggers>
    </Style>
</Window.Resources>

Now, this is where the magic happens.  You’ll see that we have a style here with two DataTriggers.  Both of the DataTriggers bind to the IsReadOnly property of our view model.  One of the DataTriggers handles when IsReadOnly is True and the other handles when IsReadOnly is False.

If IsReadOnly is True, we set the Template to a Grid with a static Label.  The Label is bound to the Name property.

If IsReadOnly is False, we set the Template to a Grid with a TextBox.  The TextBox also binds to the Name property and sets UpdateSourceTrigger=PropertyChanged.  The reason for this is that the binding would normally wait to trigger an update to the property until it loses focus.  Setting UpdateSourceTrigger=PropertyChanged will trigger the update with every key press.

The only missing piece to this puzzle is to place the actual ContentControl.

<Grid Margin="10">
    <StackPanel Orientation="Vertical">
        <CheckBox Content="Read Only" IsChecked="{Binding IsReadOnly}" />
        <ContentControl Style="{StaticResource NameStyle}" />
    </StackPanel>
</Grid>

To use the style we created above, we simply need to bind the Style of the ContentControl to the Style with the Key Name.  You’ll also notice that I have placed a CheckBox in there as well, giving a way to test that the whole operation works.

So, that pretty much wraps it up.  We now have a control that completely changes it’s look based on only a boolean value.  Although this example is quite simple, this approach can be applied to more complex situations.  You can take the solution at the end of the post and poke around a little.

Hopefully this has been helpful!  Have fun with it!

Generic Command Binding with WPF and Prism

by Brent 15. December 2009 16:17

I’ve been working a lot with WPF lately for a client project. I really enjoy working with WPF and this project is giving me the chance to really flex my WPF skillz. To make our app as testable as possible, I made the push to move to an MVVM architecture. I’m not going to discuss the details of MVVM, but I will say that is a pretty cool way to keep your functionality independent from your presentation.

To really leverage MVVM, we needed a way bind events to our view models. Luckily, Prism offers functionality that does just that. They take the concept of Command Binding and elaborate on it allowing you to bind events to commands on your view model. Command binding with Prism is reasonably easy, but it does require the creation of several classes for every event that you want to bind to. As it turns out, most of the code required for those classes is repetitive and can be generalized to work with all events on all controls.  In this post I will show you the classes I created, based on the blueprints laid out by the Prism team, which allows such binding to happen.

First up, let’s take a look at the class that actually executes the command, CommandBehaviorBinder:

/// <summary>
/// Behavior that allows controls that derive from <see cref="Control"/>
/// to hook up with <see cref="System.Windows.Input.ICommand"/> objects.
/// </summary>
/// <typeparam name="C">
/// The type of <see cref="Control"/> to hook up.
/// </typeparam>
public class CommandBehaviorBinder<C>
: CommandBehaviorBase<C> where C : Control 
{
	/// <summary>
	/// Initializes a new instance of the <see cref="CommandBehaviorBinder"/> class.
	/// </summary>
	/// <param name="control">The control.</param>
	public CommandBehaviorBinder(C control)
		: base(control)
	{
	}

	/// <summary>
	/// Executes the command.
	/// </summary>
	/// <param name="sender"></param>
	/// <param name="e"></param>
	public void Execute(Object sender, EventArgs e)
	{
		ExecuteCommand();
	}
}

A couple of things to take note of here:

1. CommandBehaviorBase is a class (provided by Prism) which associates an ICommand, the command’s parameter (if any) and the target object which the command is attached.

2. The generic type associated with CommandBehaviorBinder must be of type Control.

3. The Execute method just calls the ExecuteCommand method provided by CommandBehaviorBase.

Next up is the class which contains the actual Dependency Properties for a Command and an optional CommandParameter. This class is called Commander:

/// <summary>
/// Class that holds all Dependency Properties and Shared methods to allow an
/// event of a DependencyObject class to be attached to a Command.
/// </summary> public class Commander { private static readonly DependencyProperty EventCommandBehaviorProperty =
DependencyProperty.RegisterAttached( "EventCommandBehavior", typeof(CommandBehaviorBinder<Control>), typeof(Commander), null); /// <summary> /// Command to execute on when the event is fired. /// </summary> public static readonly DependencyProperty CommandProperty =
DependencyProperty.RegisterAttached( "Command", typeof(ICommand), typeof(Commander), new PropertyMetadata(OnSetCommandCallback)); /// <summary> /// Command parameter to supply on command execution. /// </summary> public static readonly DependencyProperty CommandParameterProperty =
DependencyProperty.RegisterAttached( "CommandParameter", typeof(Object), typeof(Commander), new PropertyMetadata(OnSetCommandParameterCallback)); /// <summary> /// Event name to bind command to. /// </summary> public static readonly DependencyProperty EventNameProperty =
DependencyProperty.RegisterAttached( "EventName", typeof(String), typeof(Commander), null); /// <summary> /// Sets the <see cref="ICommand"/> to execute when the event is fired. /// </summary> /// <param name="control">DependencyObject to attach Command.</param> /// <param name="command">Command to attach.</param> public static void SetCommand(Control control, ICommand command) { control.SetValue(CommandProperty, command); } /// <summary> /// Retrieves the <see cref="ICommand"/> attached to the <see cref="Control"/>. /// </summary> /// <param name="control">
/// DependencyObject containing the Command dependency property.
/// </param>
/// <returns>The value of the command attached.</returns> public static ICommand GetCommand(Control control) { return control.GetValue(CommandProperty) as ICommand; } /// <summary> /// Sets the value for the CommandParameter attached property on the provided
/// <see cref="Control"/>.
/// </summary> /// <param name="control">DependencyObject to attach CommandParameter.</param> /// <param name="parameter">Parameter value to attach.</param> public static void SetCommandParamter(Control control, Object parameter) { control.SetValue(CommandParameterProperty, parameter); } /// <summary> /// Gets the value in CommandParameter attached property on the provided
/// <see cref="Control"/>.
/// </summary> /// <param name="control">DependencyObject that has the CommandParameter.</param> /// <returns>The value of the property.</returns> public static Object GetCommandParameter(Control control) { return control.GetValue(CommandParameterProperty); } /// <summary> /// Sets the value for the EventName attached property on the provided <see cref="Control"/>. /// </summary> /// <param name="control">DependencyObject to attach the EventName to.</param> /// <param name="eventName">The name of the event to attach.</param> public static void SetEventName(Control control, String eventName) { control.SetValue(EventNameProperty, eventName); } /// <summary> /// Gets the value in EventName attached property on the provided <see cref="Control"/>. /// </summary> /// <param name="control">The DependencyObject that has the EventName.</param> /// <returns>The value of the property.</returns> public static String GetEventName(Control control) { return control.GetValue(EventNameProperty).ToString(); } private static void OnSetCommandCallback(
DependencyObject dependencyObject,
DependencyPropertyChangedEventArgs e) { var control = dependencyObject as Control; if (control != null) { var behavior = GetOrCreateBehavior(control); behavior.Command = e.NewValue as ICommand; } } private static void OnSetCommandParameterCallback(
DependencyObject dependencyObject,
DependencyPropertyChangedEventArgs e) { var control = dependencyObject as Control; if (control != null) { var behavior = GetOrCreateBehavior(control); behavior.CommandParameter = e.NewValue; } } private static CommandBehaviorBase<Control> GetOrCreateBehavior(Control control) { var behavior = control.GetValue(EventCommandBehaviorProperty)
as CommandBehaviorBase<Control>; ; if (behavior == null) { behavior = CreateCommandBehavior(control,
control.GetValue(EventNameProperty).ToString()); control.SetValue(EventCommandBehaviorProperty, behavior); } return behavior; } private static CommandBehaviorBase<Control> CreateCommandBehavior(
Control control,
String eventName)
{
var type = control.GetType();
var behavior = new CommandBehaviorBinder<Control>(control);
var info = type.GetEvent(eventName);

if (info != null)
{
var methodInfo = behavior.GetType().GetMethod("Execute");
var handler = Delegate.CreateDelegate(
info.EventHandlerType, behavior, methodInfo, true);
info.AddEventHandler(control, handler);
}
else { throw new ArgumentException(String.Format(
"Target object '{0}' doesn't have the event '{1}'.", type.Name, eventName));
}

return behavior;
}
}

It looks like there’s a lot to digest here, but it’s really not so bad. Here are the key things to notice with this class:

1. All the methods are static. This is to allow for binding from XAML.

2. There are three public Dependency Properties: Command, CommandParameter and EventName. These are what we will actually be binding to from XAML.

3. The middle chunk of the class is devoted to getters and setters to allow for setting the properties from XAML.

4. The last method in the class, CreateCommandBehavior, uses reflection on the control to find the event and add an event handler to it.

Now that our infrastructure is set up, we just need to do some set up to get this thing moving. First of all, create your view model with a property for each command you want to bind to (using the type ICommand):

public ICommand MoveRightCommand { get; set; }
public ICommand MoveLeftCommand { get; set; }

Next, set up the callback methods that will be called when the commands are executed:

private void MoveRight(Object data)
{
…
}

private void MoveLeft(Object data)
{
	…
}

Then instantiate the commands in the view model’s constructor, passing the callback methods as parameters:

MoveRightCommand = new DelegateCommand<Object>(MoveRight);
MoveLeftCommand = new DelegateCommand<Object>(MoveLeft);

Your view model is now all set; time to move over to the XAML. First include the namespaces at the root of your view for the view model and the commanding stuff:

xmlns:vm="clr-namespace:CommandingExample.ViewModels"
xmlns:commands="clr-namespace:CommandingExample.Commands"

Then, set your view model as the view’s DataContext:

<Window.DataContext>
	<vm:ViewModel />
</Window.DataContext>

Finally, add the controls and bind the commands on the new view model to the events of choice:

<Button
	Content="&gt;&gt;"
	commands:Commander.Command="{Binding MoveRightCommand}"
	commands:Commander.EventName="Click" />
<Button
	Content="&lt;&lt;"
	commands:Commander.Command="{Binding MoveLeftCommand}"
	commands:Commander.EventName="Click" />

Here we are binding the commands on our view models to the Click events of these buttons. If we had CommandParameters to bind to, we would do so here as well.

Note that Buttons actually have a Command property that can be bound to more easily than this for the click event, but that is the only control that has such a property and it is easy to illustrate what we are trying to accomplish by using the Button as an example.

That’s it!

As with anything, there are pros and cons to this approach. For pros, the biggie is that no more additional classes need to be written to bind to new events. For cons, you lose the type-safety and design-time intellisense that is inherent with the approach shown in the Prism example projects. In my opinion, the pros outweigh the cons.

If you put this to use, let me know how it goes!

If you want to play around with this, here’s a sample project to tinker with:

About Me

Brent Edwards

Senior Consultant - Magenic

Owner - Edwards Digital Technologies LLC

Twitter :: LinkedIn