Link to home
Start Free TrialLog in
Avatar of curiouswebster
curiouswebsterFlag for United States of America

asked on

Making a Button stay depressed in a DataGridView

I want a button called "Edit" in the first column of my DataGridView which will signify that the row is being edited, and no other row can be edited as they display in a color showing read only mode.  When the user clicks Edit for another row, my dialog will verify the data's okay in the row just edited, and make that button no longer depressed.  Only one Edit button can be depressed at a time.

How do I handle this inside a DataGridView?  The button is of type DataGridViewDisableButtonColumn() and is working fine within the DataGridView, but I need to add this new behaviour and am not quite sure where to add it.

Thanks!
ASKER CERTIFIED SOLUTION
Avatar of mwheeler1982
mwheeler1982
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of curiouswebster

ASKER

Thanks.