[DevExpress Support Team: CLONED FROM T964838: DevExpress WinForms Troubleshooting - Asynchronous Programming]
Hi Stas,
When using the async/await pattern on an application it will soon grow to the whole code base. At the end you will have async methods that are getting data from the network and affect the UI. The only way to call these methods properly is from a UI async event. These events are usually button clicks but there is also need for : Editor.Validated or Editor.EditValueChanged and Grid.CellValueChanged.
So my questions are:
- Which devexpress editor/grid events are awaited?
- Are you planning to support awaited event handlers on these events?