TabAlignment 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定选项卡控件中的选项卡位置。
public enum class TabAlignment
public enum TabAlignment
type TabAlignment =
Public Enum TabAlignment
- 继承
字段
Bottom | 1 | 沿控件的底部放置选项卡。 |
Left | 2 | 沿控件的左边缘放置选项卡。 |
Right | 3 | 沿控件的右边缘放置选项卡。 |
Top | 0 | 沿控件的顶部放置选项卡。 |
示例
下面的代码示例演示如何使用TabControl.Alignment和TabControl.Appearance属性和TabAlignmentTabAppearance枚举。 若要运行该示例,请将以下代码粘贴到包含 TabControl 名为 TabControl1 的窗体中。 在窗体的构造函数或 Load 方法中调用 ChangeTheLookOfTheTabControl 方法。
private:
void ChangeTheLookOfTheTabControl()
{
// Set the size and location of the TabControl.
this->TabControl1->Location = System::Drawing::Point( 20, 20 );
TabControl1->Size = System::Drawing::Size( 250, 250 );
// Align the tabs along the bottom of the control.
TabControl1->Alignment = TabAlignment::Bottom;
// Change the tabs to flat buttons.
TabControl1->Appearance = TabAppearance::FlatButtons;
}
private void ChangeTheLookOfTheTabControl()
{
// Set the size and location of the TabControl.
this.TabControl1.Location = new System.Drawing.Point(20, 20);
TabControl1.Size = new System.Drawing.Size(250, 250);
// Align the tabs along the bottom of the control.
TabControl1.Alignment = TabAlignment.Bottom;
// Change the tabs to flat buttons.
TabControl1.Appearance = TabAppearance.FlatButtons;
}
Private Sub ChangeTheLookOfTheTabControl()
' Set the size and location of the TabControl.
Me.TabControl1.Location = New System.Drawing.Point(20, 20)
TabControl1.Size = New System.Drawing.Size(250, 250)
' Align the tabs along the bottom of the control.
TabControl1.Alignment = TabAlignment.Bottom
' Change the tabs to flat buttons.
TabControl1.Appearance = TabAppearance.FlatButtons
End Sub
注解
此枚举由成员使用,例如 TabControl.Alignment。