Tab XML 요소 참조
Tab 요소를 사용하여 필드 그룹을 클러스터링하거나 하나 이상의 특수 컨트롤(예: 작업 항목을 연결하거나 작업 항목 기록을 표시하거나 파일을 첨부하는 컨트롤)을 지원할 수 있습니다.
<xs:element name="Tab" type="TabType" minOccurs="1" maxOccurs="unbounded"/>
<Tab Label="LabelText" Padding="(left, top, right, bottom)" Margin="(left, top, right, bottom)">
<Group> . . . </Group>
<Control> . . . </Control>
<TabGroup> . . . </TabGroup>
<Splitter> . . . </Splitter>
</Tab>
특성 및 요소
다음 단원에서는 특성, 자식 요소 및 부모 요소에 대해 설명합니다.
특성
특성 |
설명 |
---|---|
Label |
필수 TabType 특성입니다. 그룹화된 요소 집합의 레이블입니다. |
Padding |
선택적 TabType 특성입니다. 컨트롤 테두리 안쪽의 공간 크기(픽셀)입니다. |
Margin |
선택적 TabType 특성입니다. 컨트롤 테두리 바깥쪽의 공간 크기(픽셀)입니다. |
자식 요소
요소 |
설명 |
---|---|
선택적 요소.폼에 함께 표시할 요소 그룹을 정의합니다. |
|
선택적 요소.폼에 나타나는 필드를 정의합니다. |
|
선택적 요소.이 요소에는 하나 이상의 Tab 요소가 포함됩니다. |
|
선택적 요소.폼에서 형제 폼 요소 사이에 분할자와 그 방향을 정의합니다. |
부모 요소
요소 |
설명 |
---|---|
선택적 요소.이 요소에는 하나 이상의 Tab 요소가 포함됩니다. |
설명
Tab은 TabGroup의 필수 자식 요소입니다.
minOccurs="1"
maxOccurs="unbounded"
예제
<FORM>
<Layout>
. . .
<TabGroup>
<Tab Label="Planning">
<Group Label="Status" Padding="(0,0,0,3)">
<Column PercentWidth="100">
<Control FieldName="Microsoft.DevDiv.Importance" Type="FieldControl" Label="Importance" LabelPosition="Left" />
<Control FieldName="Microsoft.DevDiv.Commitment" Type="FieldControl" Label="Commitment / Confidence" LabelPosition="Left" />
. . .
</Column>
</Group>
</Tab>
<Tab Label="Description">
<Group>
<Column PercentWidth="100">
<Control FieldName="System.Description" Type="HtmlFieldControl" Label="Value Proposition Description" LabelPosition="Top" />
</Column >
</Group>
</Tab>
. . .
</TabGroup>
</Layout>
</FORM>
요소 정보
Namespace |
https://schemas.microsoft.com/VisualStudio/2005/workitemtracking/typedef |
스키마 이름 |
작업 항목 형식 정의 |
유효성 검사 파일 |
WorkItemTypeDefinition.xsd |
요소 형식 |
TabType 복합 형식 |
비워 둘 수 있음 |
예 |