Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8855077
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T14:02:41+00:00 2026-06-14T14:02:41+00:00

Can someone please post a working example of the PropertyChangedMessage being used? The description

  • 0

Can someone please post a working example of the PropertyChangedMessage being used? The description from the GalaSoft site states:

PropertyChangedMessage: Used to broadcast that a property changed in the sender. Fulfills the same purpose than the PropertyChanged event, but in a less tight way.

However, this doesn’t seem to work:

private bool m_value = false;
public bool Value
{
    get { return m_value ; }
    set 
    { 
        m_value = value;
        Messenger.Default.Send(new PropertyChangedMessage<bool>(m_value, true, "Value"));
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T14:02:43+00:00Added an answer on June 14, 2026 at 2:02 pm

    Daniel Castro commented on my question with the following question: “What do you expect from the code?”

    The answer to this question prompted me to write this answer to my own question.

    My expectations were, based on the badly written description for the PropertyChangedMessage class in the MVVM-Light documentation, that when I sent a PropertyChangedMessage then the RaisePropertyChanged method on the ViewModelBase class would get automatically called.

    Apparently, however, it’s the other way around. When you call RaisePropertyChanged, then that method has an overload where you can set a flag which determines whether or not a PropertyChangedMessage will be sent.

    However, I want the functionality that I originally expected. I want to send off a new PropertyChangedMessage that automatically causes RaisePropertyChanged to be called. Here’s how to do that.

    Derive a new class from ViewModelBase with the following public NotifyPropertyChanged method which simply calls the protected RaisePropertyChanged method:

    public abstract class MyViewModelBase : GalaSoft.MvvmLight.ViewModelBase
    {
        public void NotifyPropertyChanged(string propertyName)
        {
            RaisePropertyChanged(propertyName);
        }
    }
    

    Then derive a new class from PropertyChangedMessage which calls the new NotifyPropertyChanged method:

    public class MyPropertyChangedMessage<T> : PropertyChangedMessage<T>
    {
        public MyPropertyChangedMessage(object sender, T oldValue, T newValue, string propertyName)
            : base(sender, oldValue, newValue, propertyName)
        {
            var viewModel = sender as MyViewModelBase;
    
            if (viewModel != null)
            {
                viewModel.NotifyPropertyChanged(propertyName);
            }
        }
    
        public MyPropertyChangedMessage(object sender, object target, T oldValue, T newValue, string propertyName)
            : base(sender, target, oldValue, newValue, propertyName)
        {
            var viewModel = sender as MyViewModelBase;
    
            if (viewModel != null)
            {
                viewModel.NotifyPropertyChanged(propertyName);
            }
        }
    }
    

    I have tested this approach and verified that I can indeed write code like the following which causes the UI to update properly:

    private bool m_value = false;
    public bool Value
    {
        get { return m_value; }
        set
        {
            Messenger.Default.Send(new MyPropertyChangedMessage<bool>(this, m_value, value, "Value"));
            m_value = value;
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone please post the simplest of working code that can get the last
Can someone please provide an example of how to store, and read xml data
Can someone please fill in the blanks for me, including a brief description of
Can someone please tell me what I'm doing wrong here. I've done a post
I'm working on a new web site than can generate company/product names. Someone can
Can someone please show me/link a simple multipart form data, http post file upload
Can someone please tell me what this means: 07-04 09:54:38.048: I/DetailActivity(15496): Title that is
Can someone please explain why ?___SID=U is appearing in some Magento URLs on my
Can someone please explain how Read/Show works.. I cannot find any tutorials on it.
Can someone please explain to me how this responsive approach works? This was done

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.