TabAppearance 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
탭 컨트롤에서 탭의 모양을 지정합니다.
public enum class TabAppearance
public enum TabAppearance
type TabAppearance =
Public Enum TabAppearance
- 상속
필드
Buttons | 1 | 3차원 단추의 모양의 탭을 만듭니다. |
FlatButtons | 2 | 평면 단추 모양의 탭을 만듭니다. |
Normal | 0 | 표준 탭 모양의 탭을 만듭니다. |
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 TabControl.Alignment 하 고 TabControl.Appearance 속성 및 TabAlignment 및 TabAppearance 열거형입니다. 예제를 실행 하려면 포함 된 폼 다음 codein를 붙여 넣습니다.는 TabControl TabControl1를 호출 합니다. 폼의 생성자에서 ChangeTheLookOfTheTabControl 메서드 또는 Load 메서드를 호출 합니다.
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.Appearance합니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET