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?
|
|||
|
|
|
|
Perhaps System.Windows.Forms.AnchorStyles or System.Windows.Forms.DockStyles could do the job. |
||
|
|
|
|
Read up on the FlagAttribute |
||
|
|
|
|
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 |
||
|
|
|
A quick search revealed that the following Framework Enumerations already have these members (some have other additional members) :
|
||
|
|
|
|
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. |
||
|
|