I want to implement an "Undo" feature on a DataGridView control. This control is not connected to data source. I am simply loading data from a text file "manually" and allowing the user to edit and save the file.
Does the DataGridView control have any built in support for Undo, or will I have to code it all myself? If so, can anyone suggest a good article on the concepts involved in coding an Undo feature? (Ideally, I would like to see how others may have coded Undo for this DataGridView control)
Thanks.