MVVM Light V4 preview (BL0014) release notes

Posted by Laurent Bugnion on Geeks with Blogs See other posts from Geeks with Blogs or by Laurent Bugnion
Published on Mon, 07 Feb 2011 23:24:25 GMT Indexed on 2011/02/08 7:26 UTC
Read the original article Hit count: 191

Filed under:

MVVM_WhiteText_BL0014

I just pushed to Codeplex an update to the MVVM Light source code. This is an early preview containing some of the features that I want to release later under the version 4. If you find these features useful for your project, please download the source code and build the assemblies. I will appreciate greatly any issue report.

This version is labeled “V4.0.0.0/BL0014”. The “BL” string is an old habit that we used in my days at Siemens Building Technologies, called a “base level”. Somehow I like this way of incrementing the “base level” independently of any other consideration (such as alpha, beta, CTP, RTM etc) and continue to use it to tag my software versions. In Microsoft parlance, you could say that this is an early CTP of MVVM Light V4.

Caveat

The code is unit tested, but as we all know this does not mean that there are no bugs Smile This code has not yet been used in production. Again, your help in testing this is greatly appreciated, so please report all bugs to me!

What’s new?

The following features have been implemented:

Misc

  • Various “maintenance work”.
  • All WPF assemblies (that is .NET35 and .NET4) now allow partially trusted callers. It means that you can use them in am XBAP in partial trust mode.

Testing

  • Various test updates
  • Added Windows Phone 7 unit tests

Note: For Windows Phone 7, due to an issue in the unit test framework, not all tests can be executed. I had to isolate those tests for the moment. The error was reported to Microsoft.

ViewModelBase

  • The constructor is now public to allow serialization (especially useful on the phone to tombstone the state).
  • ViewModelBase.MessengerInstance now returns Messenger.Default unless it is set explicitly. Previously, MessengerInstance was returning null, which was complicating the code.
  • Two new ways to raise the PropertyChanged event have been added. See below for details.

Messenger

  • Updated the IMessenger interface with all public members from the Messenger class. Previously some members were missing.
  • A new Unregister method is now available, allowing to unregister a recipient for a given token.

RelayCommand

  • RaiseCanExecuteChanged now acts the same in Windows Presentation Foundation than in Silverlight. In previous versions, I was relying on the CommandManager to raise the CanExecuteChanged event in WPF. However, it was found to be too unreliable, and a more direct way of raising the event was found preferable. See below for details.

Raising the PropertyChanged event

A very much requested update is now included: the ability to raise the PropertyChanged event in a viewmodel without using “magic strings”. Personally, I don’t see strings as a major issue, thanks to two features of the MVVM Light Toolkit:

  • In the DEBUG configuration, every time that the RaisePropertyChanged method is called, the name of the property is checked against all existing properties of the viewmodel. Should the property name be misspelled (because of a typo or refactoring), an exception is thrown, notifying the developer that something is wrong. To avoid impacting the performance, this check is only made in DEBUG configuration, but that should be enough to warn the developers in case they miss a rename.
  • The property name is defined as a public constant in the “mvvminpc” code snippet. This allows checking the property name from another class (for example if the PropertyChanged event is handled in the view). It also allows changing the property name in one place only.

However, these two safeguards didn’t satisfy some of the users, who requested another way to raise the PropertyChanged event. In V4, you can now do the following:

Using lambdas

private int _myProperty;
public int MyProperty
{
    get
    {
        return _myProperty;
    }

    set
    {
        if (_myProperty == value)
        {
            return;
        }

        _myProperty = value;
        RaisePropertyChanged(() => MyProperty);
    }
}

This raises the property changed event using a lambda expression instead of the property name. Light reflection is used to get the name. This supports Intellisense and can easily be refactored. You can also broadcast a PropertyChangedMessage using the Messenger.Default instance with:

private int _myProperty;
public int MyProperty
{
    get
    {
        return _myProperty;
    }

    set
    {
        if (_myProperty == value)
        {
            return;
        }

        var oldValue = _myProperty;
        _myProperty = value;
        RaisePropertyChanged(() => MyProperty, oldValue, value, true);
    }
}

Using no arguments

When the RaisePropertyChanged method is called within a setter, you can also omit the property name altogether. This will fail if executed outside of the setter however. Also, to avoid confusion, there is no way to broadcast the PropertyChangedMessage using this syntax.

private int _myProperty;
public int MyProperty
{
    get
    {
        return _myProperty;
    }

    set
    {
        if (_myProperty == value)
        {
            return;
        }

        _myProperty = value;
        RaisePropertyChanged();
    }
}

The old way

Of course the “old” way is still supported, without broadcast:

public const string MyPropertyName = "MyProperty";
private int _myProperty;
public int MyProperty
{
    get
    {
        return _myProperty;
    }

    set
    {
        if (_myProperty == value)
        {
            return;
        }

        _myProperty = value;
        RaisePropertyChanged(MyPropertyName);
    }
}

And with broadcast:

public const string MyPropertyName = "MyProperty";
private int _myProperty;
public int MyProperty
{
    get
    {
        return _myProperty;
    }

    set
    {
        if (_myProperty == value)
        {
            return;
        }

        var oldValue = _myProperty;
        _myProperty = value;
        RaisePropertyChanged(MyPropertyName, oldValue, value, true);
    }
}

Performance considerations

It is notorious that using reflection takes more time than using a string constant to get the property name. However, after measuring for all platforms, I found the differences to be very small. I will measure more and submit the results to the community for evaluation, because some of the results are actually surprising (for example, using the Messenger to broadcast a PropertyChangedMessage does not significantly increase the time taken to raise the PropertyChanged event and update the bindings). For now, I submit this code to you, and would be delighted to hear about your own results.

Raising the CanExecuteChanged event manually

In WPF, until now, the CanExecuteChanged event for a RelayCommand was raised automatically. Or rather, it was attempted to be raised, using a feature that is only available in WPF called the CommandManager. This class monitors the UI and when something occurs, it queries the state of the CanExecute delegate for all the commands. However, this proved unreliable for the purpose of MVVM: Since very often the value of the CanExecute delegate changes according to non-UI events (for example something changing in the viewmodel or in the model), raising the CanExecuteChanged event manually is necessary.

In Silverlight, the CommandManager does not exist, so we had to raise the event manually from the start. This proved more reliable, and I now changed the WPF implementation of the RaiseCanExecuteChanged method to be the exact same in WPF than in Silverlight.

For instance, if a command must be enabled when a string property is set to a value other than null or empty string, you can do:

public MainViewModel()
{
    MyTestCommand = new RelayCommand(
        () => DoSomething(),
        () => !string.IsNullOrEmpty(MyProperty));
}

public const string MyPropertyName = "MyProperty";
private string _myProperty = string.Empty;
public string MyProperty
{
    get
    {
        return _myProperty;
    }

    set
    {
        if (_myProperty == value)
        {
            return;
        }

        _myProperty = value;
        RaisePropertyChanged(MyPropertyName);
        MyTestCommand.RaiseCanExecuteChanged();
    }
}

Logo update

I made a minor change to the logo: Some people found the lack of the word “light” (as in MVVM Light Toolkit) confusing. I thought it was cool, because the feather suggests the idea of lightness, however I can see the point. So I added the word “light” to the logo. Things should be quite clear now. Smile

What’s next?

This is only the first of a series of releases that will bring MVVM Light to V4. In the next weeks, I will continue to add some very requested features and correct some issues in the code. I will probably continue this fashion of releasing the changes to the public as source code through Codeplex. I would be very interested to hear what you think of that, and to get feedback about the changes.

Cheers,

Laurent

 

© Geeks with Blogs or respective owner