Dreamine.UI.Wpf.Controls 1.0.1
Dreamine.UI.Wpf.Controls 사용자 인터페이스 기능과 구성 요소를 제공합니다.
로딩중...
검색중...
일치하는것 없음
Dreamine.UI.Wpf.Controls.DreamineTabHostItem 클래스 참조

더 자세히 ...

Dreamine.UI.Wpf.Controls.DreamineTabHostItem에 대한 상속 다이어그램 :
Dreamine.UI.Wpf.Controls.DreamineTabHostItem에 대한 협력 다이어그램:

정적 Public 속성

static readonly DependencyProperty PopupProperty
static readonly DependencyProperty KeyProperty
static readonly DependencyProperty TypeProperty

속성

bool Popup [get, set]
string Key [get, set]
string Type [get, set]

상세한 설명

탭 호스트 안에서 일반 뷰 또는 팝업을 선언하는 논리 항목입니다.

Logical item used inside DreamineTabHost to declare a view/popup entry. Details:

  • Content: default raw type/name string.
  • Key: optional logical key override (if empty, derived from Type/Content).
  • Type: optional concrete type name override (if empty, Content is used).
  • Popup: if true, forces "*_Popup" semantics.

DreamineControl.cs 파일의 1702 번째 라인에서 정의되었습니다.

멤버 데이터 문서화

◆ KeyProperty

readonly DependencyProperty Dreamine.UI.Wpf.Controls.DreamineTabHostItem.KeyProperty
static
초기값:
=
DependencyProperty.Register(
nameof(Key),
typeof(string),
new PropertyMetadata(string.Empty))

선택적 논리 키 종속성 속성을 식별합니다.

DreamineControl.cs 파일의 1741 번째 라인에서 정의되었습니다.

◆ PopupProperty

readonly DependencyProperty Dreamine.UI.Wpf.Controls.DreamineTabHostItem.PopupProperty
static
초기값:
=
DependencyProperty.Register(
nameof(Popup),
typeof(bool),
new PropertyMetadata(false))

팝업 항목 여부 종속성 속성을 식별합니다.

DreamineControl.cs 파일의 1712 번째 라인에서 정의되었습니다.

◆ TypeProperty

readonly DependencyProperty Dreamine.UI.Wpf.Controls.DreamineTabHostItem.TypeProperty
static
초기값:
=
DependencyProperty.Register(
nameof(Type),
typeof(string),
new PropertyMetadata(string.Empty))

선택적 구체 형식 이름 종속성 속성을 식별합니다.

DreamineControl.cs 파일의 1770 번째 라인에서 정의되었습니다.

속성 문서화

◆ Key

string Dreamine.UI.Wpf.Controls.DreamineTabHostItem.Key
getset

파생 키 대신 사용할 선택적 논리 키를 가져오거나 설정합니다.

DreamineControl.cs 파일의 1756 번째 라인에서 정의되었습니다.

1757 {
1758 get => (string)GetValue(KeyProperty);
1759 set => SetValue(KeyProperty, value);
1760 }

◆ Popup

bool Dreamine.UI.Wpf.Controls.DreamineTabHostItem.Popup
getset

이 항목이 팝업 뷰를 나타내는지 가져오거나 설정합니다.

DreamineControl.cs 파일의 1727 번째 라인에서 정의되었습니다.

1728 {
1729 get => (bool)GetValue(PopupProperty);
1730 set => SetValue(PopupProperty, value);
1731 }

◆ Type

string Dreamine.UI.Wpf.Controls.DreamineTabHostItem.Type
getset

콘텐츠 대신 사용할 선택적 구체 형식 이름을 가져오거나 설정합니다.

DreamineControl.cs 파일의 1785 번째 라인에서 정의되었습니다.

1786 {
1787 get => (string)GetValue(TypeProperty);
1788 set => SetValue(TypeProperty, value);
1789 }

이 클래스에 대한 문서화 페이지는 다음의 파일로부터 생성되었습니다.: