Accessing UI components on a background thread.

F

Frank Rizzo

Hello,

I know that it's a bad thing to update UI components on a background
thread. But is it fairly safe to access them? I want to iterate
through a tree list.

Thanks.
 
N

Nicholas Paldino [.NET/C# MVP]

Frank,

The only methods on a class that derives from Control that are safe to
invoke from any thread are Invoke, BeginInvoke, EndInvoke and CreateGraphics
(if the handle for the control has already been created). Other than that,
anything to access a property/method on the UI has to be called on the UI
thread, through the Invoke method if from another thread (which will marshal
the call to the UI thread).
 
J

Jeffrey Tan[MSFT]

Hi Frank,

Nicholas has provided the best practice rule for you. Actually .Net Winform
controls encapsulate the Win32 native controls. Since the Win32 native
controls are designed as STA COM threading model, we are not allowed to
call it from second thread.

Regarding your task, you may write a helper method which wraps the code to
iterate through your GUI tree list. Then in the second thread, you may use
Control.Invoke or Control.BeginInvoke methods to call this helper method.
This will ensure the thread safety.

Hope this helps.

Best regards,
Jeffrey Tan
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 
J

Jeffrey Tan[MSFT]

Hi Frank,

Have you reviewed the replies to you? Do they make sense to you? If you
still need any help, please feel free to feedback, thanks.

Best regards,
Jeffrey Tan
Microsoft Online Community Support
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
 
F

Frank Rizzo

Jeffrey said:
Hi Frank,

Have you reviewed the replies to you? Do they make sense to you? If you
still need any help, please feel free to feedback, thanks.

Yes, thank you.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top