20 lines
803 B
XML
20 lines
803 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<UXML xmlns="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit">
|
|
<Style src="../UTKSampleCommon.uss" />
|
|
|
|
<VisualElement class="utk-sample-container">
|
|
<Label class="utk-sample-desc" text="접을 수 있는 섹션 컴포넌트" />
|
|
|
|
<VisualElement class="utk-sample-column">
|
|
<utk:UTKFoldout name="foldout-expanded" Title="Expanded Section" IsExpanded="true">
|
|
<Label text="Content inside the foldout" />
|
|
<Label text="More content here" />
|
|
</utk:UTKFoldout>
|
|
|
|
<utk:UTKFoldout name="foldout-collapsed" Title="Collapsed Section" IsExpanded="false">
|
|
<Label text="Hidden content" />
|
|
</utk:UTKFoldout>
|
|
</VisualElement>
|
|
</VisualElement>
|
|
</UXML>
|