I have a WinForms DataGridView control on a form. There are two fields in this DataGridControl:
Email Address
Resolved Email Address
(calculated based on the input inEmail Address
)
After the user inputs or changes a value in Email Address
, I want the value in Resolved Email Address
to update based on a separate method. What event should I tie in to so that that the Resolved Email Address
cell is updated after the Email Address
cell is updated?
I'm not sure where to put the event because the user could do a number of things after adding/changing a value: tab to the next cell, click cancel on the form, click ok on the form, etc. Any ideas?