0
votes
Show a Form without stealing focus (in C#)
Create and start the notification Form in a separate thread and reset the focus back to your main form after the Form opens. Have the notification Form provide an OnFormOpened event that is fired f …
1
vote
WinForm Controls for .NET Compact Framework
What about the Smart Device Framework? The GUI components don't look as fancy as those in the Resco toolkit, but SDF seems to have …
2
votes
Unit-testing data binding in System.Windows.Forms
I think you answered your own question -- in order for the property change event (TextChanged) to occur the control has to be displayed. Your unit test can just do something like this: …
5
votes
Implementing MVC with Windows Forms
I wrote an article last year, Selecting a MVC/MVP Implementation for a W …
5
votes
UserControl as an interface, but visible in the Designer
If SomeCustomerNameUserControl is defined like this:
class SomeCustomerNameUserControl : UserControl, ICustomerName
{
}
You can still drop this contro …
0
votes
How to access DataGridView column names safely?
The only way to prevent run-time problems is to catch the ArgumentException when trying to access a non-existent Cells item. For example:
private void SetC …
0
votes
How do I play movies in a C# WinForm application
One possibility is to use the Forms.WebBrowser class. This will give you an embedded web br …
1
vote
C# UserControl constructor with parameters
Just do this:
public partial class MyUserControl : UserControl
{
public MyUserControl() : this(-1, string.Empty)
{
}
public MyUserControl(int parm1, string parm2)
…
