Is there a simple way to find out if a property grid is currently being edited by the user?
My usecase is the following: I update the grid data every second. If the user is editing a value, all inputs get lost when my update is called. So what I want to do is only update if the user is not editing something.
I don't think there is any official way. However the following piece of code can detect when a grid entry is opened using the builtin text box editor, or the dropdown editor. It does not detect when an entry is opened using the small '...' edit button.
Of course, since it's based on the grid internal structure, it may change in the future, so, use at your own risk.