vote up 2 vote down star

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
}
flag

5 Answers

vote up 5 vote down check

Perhaps System.Windows.Forms.AnchorStyles or System.Windows.Forms.DockStyles could do the job.

link|flag
vote up -1 vote down

Read up on the FlagAttribute

link|flag
vote up 2 vote down

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 VerticalAlignment and HorizontalAlignment that might be useful.

link|flag
Having a none option in an enum is something I usually add, so anchor styles looks like it does the job nicely! – TK Feb 10 at 9:06
vote up 8 vote down

A quick search revealed that the following Framework Enumerations already have these members (some have other additional members) :

  • AnchorStyles - System.Windows.Forms
  • Border3DSide - System.Windows.Forms
  • DockStyle - System.Windows.Forms
  • Edges - System.Windows.Forms.VisualStyles
  • TabAlignment - System.Windows.Forms
  • ToolStripStatusLabelBorderSides - System.Windows.Forms
  • VerticalAlignment - System.Windows.Forms.VisualStyles
link|flag
vote up 1 vote down

Well, both AnchorStyles and DockStyles have additional values besides the four you need; AnchorStyles additionally has FlagAttribute turned on which won't necessarily make sense (What would Top Left mean? What about Left Right?)

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 Windows.Forms just for the sake of an enum.

Unless, of course, you're already inside Windows.Forms, and one of @Cerebrus's suggestions actually makes sense in your context.

link|flag

Your Answer

Get an OpenID
or

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