up vote 2 down vote favorite
share [g+] share [fb]

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
}
link|improve this question

Don't do it, define your own. Reusing an enum like DockStyle could 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
feedback

6 Answers

up vote 5 down vote accepted

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

link|improve this answer
feedback

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|improve this answer
2  
It's worth nothing that this search could be done using the "object browser" in Visual Studio. – Neil N Dec 14 '09 at 18:54
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 VerticalAlignment and HorizontalAlignment that might be useful.

link|improve this answer
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 '09 at 9:06
feedback

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|improve this answer
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

link|improve this answer
feedback

Read up on the FlagAttribute

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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