C#
What type of winforms or controls implement "Invoke/BeginInvoke" functions
C#
What type of winforms or controls implement "Invoke/BeginInvoke" functions
Control
itself implements ISynchronizeInvoke
, which is where the Invoke
/BeginInvoke
methods come from.
Anything that inherits Control
. Form
and UserControl
are the two classes where you'll use them the most.