vote up 4 vote down star
2

Despite the growing popularity Web Applications, and WPF, there's still a lot of work being done in "old-style" Windows.Forms, especially for in-house ("bespoke") business software systems.

So, what are the best (and most hidden) features and tricks of Windows.Forms, the things that can help us turn out useful applications faster?

(I was somewhat surprised to see that this question hadn't already been asked!)

As always for these kinds of questions ...

  • One tip per answer, to allow the best to be voted to the top
  • Don't repost an answer that's already here; vote it up instead
  • Stay on topic - tips and tricks for Windows.Forms

Related questions

(Though, none of these touch on Windows.Forms much, if at all.)

flag

9 Answers

vote up 4 vote down

Instead of the normal Panel, consider using TableLayoutPanel - it provides much the same functionality as the WPF Grid layout, but for WinForms.

Great for creating dialogs and other windows that need to be resizable:

Sample Resizable Dialog

Why do I like it?

  • Saves fussing around with nested panels and anchors to get the resizing behaviour I want
  • Automatic layout with a consistent amount of spacing between controls

What don't I like?

  • Can be slow to resize dynamically as the user resizes the form
link|flag
vote up 3 vote down

The native Windows ListView control supports double-buffering. Windows Forms implements this by overriding the DoubleBuffered property. Problem is, when you drag a ListView from the tool box, that property is never set. And you can't set it easily, it is a protected property.

The fix is simple: add a new class to your project and paste the code shown below. Compile. Drop the new control from the top of the toolbox. Painting is now silky-smooth. The difference can be quite noticeable, depending on how frequently you update it.

using System;
using System.Windows.Forms;

class MyListView : ListView {
    public MyListView() {
        this.DoubleBuffered = true;
    }
}
link|flag
Thanks for this, we've been noticing flickering on ListViews for a while and this solves it. – Martin Nov 24 at 10:36
vote up 2 vote down

Well, I don't know about faster (this is a complex topic) - but one of the more hidden features is that winform (and IIRC WPF) data-binding supports custom property-models, akin to some of the things you can do with dynamic - but going way back. To do this, either implement ICustomTypeDescriptor / ITypedList, or create a TypeDescriptionProvider. And of course write your own PropertyDescriptor models...

For example:

link|flag
vote up 2 vote down

I don't know if this counts as hidden (just badly documented!), but Windows Forms provides very good support for the design-time environment. Examples include:

  • It's amazingly easy to create custom editors for your control's properties, or to add commands to be shown at design time (such as an Add Column command for a data grid).
  • Customise the designer generated code for your control using CodeDom and the DesignerSerializerAttribute. Rarely needed, but a critical hook when it is!
  • Extender providers allow controls such as the ErrorProvider to add properties to other controls (similar to WPF attached properties).

Lots of stuff like this (Marc's note about property extensibility ties into this as well). Admittedly, this doesn't directly help you develop applications faster -- but if you're building reusable controls or components, it certainly helps the users of those controls get going faster and work more easily.

link|flag
vote up 2 vote down

System.Windows.Forms.ControlPaint seems to be little known, yet it can be very useful for painting common Windows controls.

link|flag
vote up 0 vote down

DataGridView in virtual mode, may make quite a big difference when dealing with large amounts of data.

link|flag
vote up 0 vote down

BufferedGraphics is definitely a hidden gem when you want to have more control over double buffering or want to have transparency work correctly on an offscreen buffer with some P/Invoked GDI calls.

link|flag
vote up 0 vote down

Windows Forms has a lot of bugz. Most of them are induced by the difficulty of putting a wrapper around User32. Some are just plain bugz. Here's a plain one that can be quite handy to quickly test if your application produces meaningful unhandled exception diagnostics:

The Keystroke Of Death. As far as I know, it works in any .NET version and will reliably crash any Windows Forms application. Hold down the Alt key and type "03" on the keypad. Kaboom. If you don't mention "OverflowException" anywhere afterwards, you'll need to implement an event handler for AppDomain.UnhandledException. Especially important when you use threads.

link|flag
vote up 0 vote down

The SystemInformation class is full of useful metrics.

To illustrate, VerticalScrollBarWidth is useful when you're autosizing columns in a ListView, so that you allow the right amount of space for the vertical scrollbar without bringing a horizontal scrollbar into view.

Also, UserName and UserDomainName are also useful for identifying the current user.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.