How can i change image index of a tree view node in a threadsafe manner? There is no Invoke() method for TreeNode class.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can call
Invokeon the form instead of the component itself.Component code executes on the thread of the form, so an invoke on a component simply delegates the operation to the form’s thread. You’ll get exactly the same result by using
form.Invokeas you wouldform.component.Invoke.