C# – How to fix “Action being performed on this control is being called from the wrong thread”?
When we populate the data in the control, if the data is big, usually we put the data population logic in the thread to execute it asynchronously. We need to be cautious when we do this data population from another thread. Because, we can not use the controls directly in different threads. This has to […]