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

  • Home
  • SEARCH
  • 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 6775959
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T15:58:08+00:00 2026-05-26T15:58:08+00:00

I know MVVM heavily uses the INotifyPropertyChanged, but I have never seen any usage

  • 0

I know MVVM heavily uses the INotifyPropertyChanged, but I have never seen any usage of the INotifyPropertyChanging. Any reason why?

If I did want to use this, what would be a good way to integrate this into my MVVM Framework? I know you’re not supposed to use MessageBox on your ViewModel because then you can’t unit test it. So how would one go about throwing up an alert, then continuing on with the PropertyChange if applicable?

  • 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-05-26T15:58:09+00:00Added an answer on May 26, 2026 at 3:58 pm

    Something to keep in mind about INotifyPropertyChanging is you can’t stop the change from happening. This merely allows you to record that the change occurred.

    I use it in a framework of mine for change tracking, but it isn’t an appropriate method for halting changes.

    You could extend your ViewModelBase with a custom interface/event pair:

    delegate void AcceptPendingChangeHandler(
        object sender,
        AcceptPendingChangeEventArgs e);
    
    interface IAcceptPendingChange
    {
        AcceptPendingChangeHandler PendingChange;
    }
    
    class AcceptPendingChangeEventArgs : EventArgs
    {
        public string PropertyName { get; private set; }
        public object NewValue { get; private set; }
        public bool CancelPendingChange { get; set; }
        // flesh this puppy out
    }
    
    class ViewModelBase : IAcceptPendingChange, ...
    {
        protected virtual bool RaiseAcceptPendingChange(
            string propertyName,
            object newValue)
        {
            var e = new AcceptPendingChangeEventArgs(propertyName, newValue)
            var handler = this.PendingChange;
            if (null != handler)
            {
                handler(this, e);
            }
    
            return !e.CancelPendingChange;
        }
    }
    

    At this point you’d need to add it by convention to your view models:

    class SomeViewModel : ViewModelBase
    {
         public string Foo
         {
             get { return this.foo; }
             set
             {
                 if (this.RaiseAcceptPendingChange("Foo", value))
                 {
                     this.RaiseNotifyPropertyChanging("Foo");
                     this.foo = value;
                     this.RaiseNotifyPropretyChanged("Foo");
                 }
             }
         }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an MVVM collection that I know is reordered in the VM but
I don't know according to MVVM show data on control. I have a collection
this I guess is similar to the MVVM templates - but does anyone know
How to use MVVM in WPF Browser Application? I want to know how to
I know some DI frameworks support this (e.g. Ninject ), but I specifically want
I want to create PRISM application with MVVM pattern and I don't know where
I was wondering if any of you guys know some good tutorial explaining MVVM
I have the beginnings of my first Silverlight MVVM app and need to know
I am using a WPF application with MVVM model. I want to know how
Most MVVM examples I have worked through have had the Model implement INotifyPropertyChanged ,

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.