In .NET WinForms Control.InvokeRequired needs to be checked before UI updates are made. It will be True when the handle has been created and the current thread is not the thread on which the control was created. When it is True, you need to perform the UI update using a delegate call through ...
44
votes
3answers
14k views
C#: Automating the InvokeRequired code pattern
I have become painfully aware of just how often one needs to write the following code pattern in event-driven GUI code, where
private void DoGUISwitch() {
// cruisin for a bruisin' through ...
15
votes
6answers
1k views
What's wrong with calling Invoke, regardless of InvokeRequired?
I've seen the common setup for cross threading access to a GUI control, such as discussed here:
...
4
votes
1answer
116 views
BeginInvoke is blocking the UI whereas Invoke is not.!
I am confused with scenario which I have encountered with cross thread access. Here is what I am trying to do:
Main UI thread - menu item click I create a background worker and run it asynchronously
...
7
votes
5answers
2k views
Run code on UI thread without control object present
I currently trying to write a component where some parts of it should run on the UI thread (explanation would be to long).
So the easiest way would be to pass a control to it, and use ...
15
votes
9answers
865 views
Cleaning up code littered with InvokeRequired
I know that when manipulating UI controls from any non-UI thread, you must marshal your calls to the UI thread to avoid issues. The general consensus is that you should use test InvokeRequired, and if ...
4
votes
4answers
1k views
Fire event from Async component in UI thread
I'm building a non-visual component in .Net 2.0. This component uses an asynchronous socket (BeginReceive, EndReceive etc). Asynchronous callbacks are called in the context of a worker thread created ...
0
votes
3answers
51 views
Removing Text with an Invoke?
So, the documentation that I've found online so far regarding the Invoke property doesn't seem to be particularly good, which is actually kind of annoying, believe it or not. I understand what Invoke ...
0
votes
1answer
317 views
Winforms data-binding to business objects in a multi-threaded scenario without InvokeRequired?
For example, I've got a business object Person:
class Person : INotifyPropertyChanged
{
string Name { get; set; }
DateTime DateOfBirth { get; set; }
}
// ^ abbreviated for better legibility; ...
1
vote
3answers
585 views
InvokeRequired is true on PictureBox. How to deal with this?
I had another question on my PictureBox calls giving me 3 kinds of errors, some great answers came in particularly from Conrad Frix. So it led me to figure out where my problem is, but now to fix it ...
3
votes
3answers
813 views
InvokeRequired of Form == false and InvokeRequired of contained control == true
how is it possible? I have windows Form control, derived from System.Windows.Forms.Form with WebBrowser control contained in this form. Webbrowser object instance is created in constructor of form (in ...
2
votes
1answer
73 views
What is wrong with my InvokeRequied #2?
The first topic is What wrong with my InvokeRequied
I followed the answer that he recommended it to me but I found a new problem.
The result of below picture is cross thread exception.
What is ...
1
vote
1answer
35 views
InvokeRequired keeps returning false when true is expected
I have the following test code. It does nothing useful, but it's there for me to understand VB:
Imports System
Imports System.IO
Imports System.Diagnostics
Imports Microsoft.VisualBasic
Imports ...
1
vote
2answers
147 views
InvokeRequired doubt
The following method will be invoked from a non UI thread. Should I check InvokeRequired, for calling these items in the method?
a. this._moduleStatusGrid.Invalidate()
b. this.Close()
private void ...
0
votes
2answers
94 views
Invoke without Func in Property's getter for .Net 2.0
I would like to use Invoke in getter, how to do it when using .Net 2.0 not e.g. 4.0? For .Net > 2.0 we can use Func and what is replacement for .Net 2.0?
Here is example for .Net 4.0 (from link)
...
0
votes
2answers
63 views
0
votes
2answers
97 views
Why bother with InvokeRequired
I understand the need to use Invoke/BeginInvoke to make calls from worker threads to functions or procedures which make changes to components which belong to the UI thread...
My question is - is ...
0
votes
3answers
236 views
C# InvokeRequired with property getter
I would like to make my getter thread safe. When I do this, I get an error:
public ApplicationViewModel SelectedApplication
{
get
{
if (InvokeRequired)
{
...
0
votes
1answer
1k views
VB.net Invoke a property change in a control
Lots of examples of how to invoke methods, but how does one change a simple property?
For demonstration-sake, here's a very simple set of code that should help. Let's say I need to set the visible ...
0
votes
3answers
272 views
Events and Multithreaded code in .NET
Project is C#.
So I have a bunch of multithreaded code that is designed to be run as a library. It's in a seperate project from the UI.
My library has a central object that needs to be created ...