48 lines
2.1 KiB
XML
48 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<UXML xmlns="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit">
|
|
<Style src="../UTKSampleCommon.uss" />
|
|
<Style src="UTKTabViewSample.uss" />
|
|
|
|
<VisualElement class="utk-sample-container">
|
|
<Label class="utk-sample-desc" text="탭 뷰 컴포넌트" />
|
|
|
|
<!-- Top Alignment -->
|
|
<VisualElement class="utk-sample-section">
|
|
<Label class="utk-sample-section__title" text="Top Alignment (Default)" />
|
|
<VisualElement name="tabview-top-container" class="utk-sample-tabview-container">
|
|
<!-- UTKTabView with Top alignment will be created via C# -->
|
|
</VisualElement>
|
|
</VisualElement>
|
|
|
|
<!-- Bottom Alignment -->
|
|
<VisualElement class="utk-sample-section">
|
|
<Label class="utk-sample-section__title" text="Bottom Alignment" />
|
|
<VisualElement name="tabview-bottom-container" class="utk-sample-tabview-container">
|
|
<!-- UTKTabView with Bottom alignment will be created via C# -->
|
|
</VisualElement>
|
|
</VisualElement>
|
|
|
|
<!-- Left Alignment -->
|
|
<VisualElement class="utk-sample-section">
|
|
<Label class="utk-sample-section__title" text="Left Alignment" />
|
|
<VisualElement name="tabview-left-container" class="utk-sample-tabview-container">
|
|
<!-- UTKTabView with Left alignment will be created via C# -->
|
|
</VisualElement>
|
|
</VisualElement>
|
|
|
|
<!-- Right Alignment -->
|
|
<VisualElement class="utk-sample-section">
|
|
<Label class="utk-sample-section__title" text="Right Alignment" />
|
|
<VisualElement name="tabview-right-container" class="utk-sample-tabview-container">
|
|
<!-- UTKTabView with Right alignment will be created via C# -->
|
|
</VisualElement>
|
|
</VisualElement>
|
|
|
|
<!-- Code Sample -->
|
|
<VisualElement class="utk-code-sample-container">
|
|
<utk:UTKCodeBlock name="code-csharp" title="C#" />
|
|
<utk:UTKCodeBlock name="code-uxml" title="UXML" />
|
|
</VisualElement>
|
|
</VisualElement>
|
|
</UXML>
|