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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T01:49:48+00:00 2026-06-13T01:49:48+00:00

I have a DataGrid ,and need to detect when a user has make changes

  • 0

I have a DataGrid,and need to detect when a user has make changes to a row.I don’t want to use CellEditEnding because whenever a row get focus and lost it without any inputs,this event get raised,in the other way i need to bind a bool property to each row that set to true when the row got chgangd.

  • 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-13T01:49:49+00:00Added an answer on June 13, 2026 at 1:49 am

    Use following code as an example, so you know the basic idea of how to trace if an item in your ItemSource had been changed (here only compared to the initial value only).

    List<myItem> Items=new List<myItem>(); //your ItemSource
    
    
    
        class myItem:ObservableObject //an class implement INotifyPropertyChanged interface
        {
            string _inititemName;
            string _itemName;
            bool itemChanged; //here is your indicator
    
            myItem(string name)
            {
                _inititemName=itemName=name;
            }
    
            public string itemName
            {   
                get{return _itemName;}
                set
                {  
                    _itemName=vlaue; 
                    if (_itemName!=_inititemName) 
                       itemChanged=true; 
                    else 
                       itemChanged=false;
                    RaisePropertyChanged("itemName"); //or whatever the name of the method is that invoke OnPropertyChanged
                }
            }
        } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Datagrid I want to provide some data validation, but I need
i have a datagrid and every row has a checkbox on it. also every
I have a DataGrid and I need to add an Expander control dynamically to
I have a dataGrid(not dataGridView) in which i need to add Checkbox dynamically at
I have a DataGrid that represents layers - each row is an image on
I have a datagrid and I want to set the value of a dropdownlist
I have a datagrid populated by a Linq query. When the focused row in
I have a DataGrid in Compact Framework I need to fill out with tens
I have a large WPF application where I have a datagrid within a user
I have several datagrid where I need to update the informations. Things is, since

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.