Alignment 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
注意
The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.
指定呈现的对象的对齐方式。 此类不能被继承。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。
public enum class Alignment
public enum Alignment
[System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")]
public enum Alignment
type Alignment =
[<System.Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")>]
type Alignment =
Public Enum Alignment
- 继承
- 属性
字段
Center | 2 | 与屏幕的中央对齐。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
Left | 1 | 与屏幕的左侧对齐。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
NotSet | 0 | 默认值。 如果值为 NotSet,则对齐方式从控件样式继承;或者,如果未定义样式,则从控件的父控件继承。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
Right | 3 | 与屏幕的右侧对齐。 此 API 已废弃不用。 有关如何开发 ASP.NET 移动应用程序的信息,请参阅 移动应用 & 具有 ASP.NET 的网站。 |
注解
Alignment枚举表示项在其父容器(如面板或窗体)上的水平位置。 例如,如果将图像添加到窗体,则可以将其水平位置设置为与窗体的右侧对齐。
尽管可以在脚本语言中使用位值,但不能将它们与 ASP.NET 一起使用。 例如, Alignment = "2"
面板标记中不是有效的 语句。 但是,在 Visual C# 中,可以使用 this.myPanel.Alignment = 2
。