当前位置:  开发笔记 > 编程语言 > 正文

顶部,底部,左侧,右侧的C#标准类(枚举?)

如何解决《顶部,底部,左侧,右侧的C#标准类(枚举?)》经验,为你挑选了3个好方法。

是否有一个标准的c#类定义了一个名义上的左,右,上和下?

我应该使用自己的吗?

enum controlAlignment
{
    left = 1,
    top,
    right,
    bottom,
    none = 0
}

Cerebrus.. 20

快速搜索显示以下Framework Enumerations已经拥有这些成员(其中一些还有其他成员):

AnchorStyles - System.Windows.Forms

Border3DSide - System.Windows.Forms

DockStyle - System.Windows.Forms

边缘 - System.Windows.Forms.VisualStyles

TabAlignment - System.Windows.Forms

ToolStripStatusLabelBorderSides - System.Windows.Forms

VerticalAlignment - System.Windows.Forms.VisualStyles

使用Visual Studio中的"对象浏览器"完成此搜索是没有价值的. (4认同)


Knasterbax.. 10

一个很好的枚举也可能是:

System.Drawing中.ContentAlignment(在System.Drawing.dll中)

这些是其成员:

public enum ContentAlignment
{
    TopLeft = 1,
    TopCenter = 2,
    TopRight = 4,
    MiddleLeft = 16,
    MiddleCenter = 32,
    MiddleRight = 64,
    BottomLeft = 256,
    BottomCenter = 512,
    BottomRight = 1024,
}


Michaël Carp.. 7

也许System.Windows.Forms.AnchorStyles或System.Windows.Forms.DockStyles可以完成这项工作.



1> Cerebrus..:

快速搜索显示以下Framework Enumerations已经拥有这些成员(其中一些还有其他成员):

AnchorStyles - System.Windows.Forms

Border3DSide - System.Windows.Forms

DockStyle - System.Windows.Forms

边缘 - System.Windows.Forms.VisualStyles

TabAlignment - System.Windows.Forms

ToolStripStatusLabelBorderSides - System.Windows.Forms

VerticalAlignment - System.Windows.Forms.VisualStyles


使用Visual Studio中的"对象浏览器"完成此搜索是没有价值的.

2> Knasterbax..:

一个很好的枚举也可能是:

System.Drawing中.ContentAlignment(在System.Drawing.dll中)

这些是其成员:

public enum ContentAlignment
{
    TopLeft = 1,
    TopCenter = 2,
    TopRight = 4,
    MiddleLeft = 16,
    MiddleCenter = 32,
    MiddleRight = 64,
    BottomLeft = 256,
    BottomCenter = 512,
    BottomRight = 1024,
}



3> Michaël Carp..:

也许System.Windows.Forms.AnchorStyles或System.Windows.Forms.DockStyles可以完成这项工作.

推荐阅读
刘美娥94662
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有