Is there a standard c# class that defines a notional Left, Right, Top and Bottom?
Should I just use my own?
enum controlAlignment
{
left = 1,
top,
right,
bottom,
none = 0
}
|
Is there a standard c# class that defines a notional Left, Right, Top and Bottom? Should I just use my own?
| ||||
|
feedback
|
|
Perhaps System.Windows.Forms.AnchorStyles or System.Windows.Forms.DockStyles could do the job. | |||
|
feedback
|
|
A quick search revealed that the following Framework Enumerations already have these members (some have other additional members) :
| |||||
feedback
|
|
Not unless you could the anchor styles (which has more). I'd roll my own for this. In the standard winforms library there are separate | |||
feedback
|
|
Well, both Since I can't think of any built-in functions that could generically take advantage of the standard Anchor- and DockStyles data types in any meaningful way, writing your own enumeration seems like a much saner alternative to linking against Unless, of course, you're already inside Windows.Forms, and one of @Cerebrus's suggestions actually makes sense in your context. | |||
|
feedback
|
|
If you're looking for a WPF namespaced item, you could try the System.Windows.Controls.Dock enumeration. It does not have the Flags attribute, and it does not support a 'None' option. http://msdn.microsoft.com/en-us/library/system.windows.controls.dock.aspx | |||
|
feedback
|
|
Read up on the FlagAttribute | |||
|
feedback
|
DockStylecould work, but would make your more difficult to read/maintain (e.g. "why dock style when I'm detecting page whitespace boundaries?"). – dbkk May 31 '11 at 7:15