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 6370731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:58:04+00:00 2026-05-25T00:58:04+00:00

I am working with WPF DataGrid in the MVVM manner and having trouble reverting

  • 0

I am working with WPF DataGrid in the MVVM manner and having trouble reverting the selection change from the ViewModel.

Is there any proven way to do this? My latest tried out code is below. Now I do not even mind investing on a hack inside the code behind.

public SearchResult SelectedSearchResult
{
    get { return _selectedSearchResult; }
    set
    {
        if (value != _selectedSearchResult)
        {
            var originalValue = _selectedSearchResult != null ? _selectedSearchResult.Copy() : null;
            _selectedSearchResult = value;
            if (!DispatchSelectionChange(value)) // Returns false if the selection has to be cancelled.
            {
                _selectedSearchResult = originalValue;
                // Invokes the property change asynchronously to revert the selection.
                Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.ContextIdle, new Action(() => NotifyOfPropertyChange(() => SelectedSearchResult)));
                return;
            }
            NotifyOfPropertyChange(() => SelectedSearchResult);
        }
    }
}
  • 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-25T00:58:05+00:00Added an answer on May 25, 2026 at 12:58 am

    After days of trial and error, finally got it working. Following is the code:

        public ActorSearchResultDto SelectedSearchResult
        {
            get { return _selectedSearchResult; }
            set
            {
                if (value != _selectedSearchResult)
                {
                    var originalSelectionId = _selectedSearchResult != null ? _selectedSearchResult.Id : 0;
                    _selectedSearchResult = value;
                    if (!DispatchSelectionChange(value)) // Returns false if the selection has to be cancelled.
                    {
                        // Invokes the property change asynchronously to revert the selection.
                        Dispatcher.CurrentDispatcher.BeginInvoke(DispatcherPriority.ContextIdle, new Action(() => RevertSelection(originalSelectionId)));
                        return;
                    }
                    NotifyOfPropertyChange(() => SelectedSearchResult);
                }
            }
        }
    
        private void RevertSelection(int originalSelectionId)
        {
            _selectedSearchResult = SearchResults.FirstOrDefault(s => s.Id == originalSelectionId);
            NotifyOfPropertyChange(() => SelectedSearchResult);
        }
    

    Key here is to use a brand new originally selected item from the databound grid’s collection (ie: SearchResults) rather than using a copy of the selected item. It looks obvious, but took days for me to figure it out! Thanks for everyone who helped 🙂

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a WPF application and is using the Model-View-ViewModel pattern. The application
I'm working on a WPF application, and I'm structuring it using the MVVM pattern.
Is there a simple way to export a WPF DataGrid to a text file
I've been working with the DataGrid in WPF with great results. However, it is
Im working on a middle size project, using WPF. Need DataGrid, suitable for the
I m working with WPF DataGrid and I want to retrieve a DataGridCell 's
I am working on a WPF datagrid custom control, where i have a Day
I have a WPF Datagrid populated with data from one SQL table using Entity
Hi I am converting a old vb.net program to WPF and am having trouble.
I am working on a project where I have implemented MVVM for WPF desktop

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.