Lurker Indeed
Lurker Indeed

Reputation: 1531

Windows Forms Layout Engines

Does anyone have or know best practices for implementing a custom layout engine in WinForms? I've seen the windowsclient.net link, but it's a bit dated (Sept 2001).

Upvotes: 3

Views: 2624

Answers (2)

Glenner003
Glenner003

Reputation: 1552

You can always check out DevExpress Layout Control. It's not free but it is an eye opener.

Upvotes: 2

Ilya Ryzhenkov
Ilya Ryzhenkov

Reputation: 12132

When I tried to do custom layout engine in WinForms, I was blocked by the fact that IArrangedElement interface is internal. It looks stupid, but it seems you can't get layout properties in a uniform way unless you develop System.Windows.Forms itself.

Upvotes: 4

Related Questions