Search Results

0
votes

How to validate .NET dialog items when using automatic DialogResult?

What I have done for this is to not set the DialogResult on the OK button, but put some code behind the button. private void OkButton_Clicked(object sender, EventArgs e) { this. …
0
votes

using statement vs try finally

I think method 2 would be better. Simpler and more readable code in your properties. Less error-prone since the locking code doesn't have to be re-written several times. …
0
votes

C# InvalidOperationException AND Cross-thread operation

You can't access the host thread from the background worker's execution thread. You can use the ReportProgress method of the BackgroundWorker to send information to the host thread. …