I wish to create a button ( made by me as a user-control ) from another thread other than the one i wish to create on . The thing is that i know how to modify a user-control object from another thread ( using a delegate and .InvokeRequired ) but i don’t know how i could create one . Any Suggestions ?
Share
Try the following:
Within the delegate (the
() => { }), you can do anything you like with the user control and the form.