Label.FlatStyle 属性

定义

获取或设置标签控件的平面样式外观。

public:
 property System::Windows::Forms::FlatStyle FlatStyle { System::Windows::Forms::FlatStyle get(); void set(System::Windows::Forms::FlatStyle value); };
public System.Windows.Forms.FlatStyle FlatStyle { get; set; }
member this.FlatStyle : System.Windows.Forms.FlatStyle with get, set
Public Property FlatStyle As FlatStyle

属性值

FlatStyle

FlatStyle 值之一。 默认值是 Standard

例外

分配的值不是 FlatStyle 值之一。

注解

FlatStyle将属性设置为 FlatStyle.System 时,将忽略分配给ImageListImage属性ImageIndexImageAlign属性的任何值。 此外,该 TextAlign 属性将忽略非垂直属性设置的任何属性值。 属性的水平对齐设置 TextAlign 与控件顶部对齐。 例如,如果将属性设置为 TextAlignContentAlignment.MiddleCenter或者ContentAlignment.BottomCenter当属性设置为FlatStyle.SystemFlatStyle,控件中的Label文本将与控件边界内的ContentAlignment.TopCenter顶部和中心位置对齐。

备注

在 .NET Framework 版本 1.1 中,将FlatStyle属性FlatStyle.System设置为不会导致忽略该属性的值TextAlign。 此外,该属性在派生类 LinkLabel中不起作用。

适用于