Files
XRLib/Assets/Resources/UIToolkit/Window/UTKComponentListWindow.uxml

28 lines
1.2 KiB
Plaintext
Raw Normal View History

<ui:UXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ui="UnityEngine.UIElements"
xmlns:utk="UVC.UIToolkit"
noNamespaceSchemaLocation="../../../../../UIElementsSchema/UIElements.xsd"
editor-extension-mode="False">
<!--
UTKComponentListWindow.uxml
UTKComponentList를 래핑하는 윈도우 컴포넌트입니다.
헤더(타이틀, 닫기 버튼)와 내부 UTKComponentList로 구성됩니다.
구조:
- container: 메인 컨테이너
- header: 윈도우 헤더
- title: 윈도우 제목
- close-btn: UTKButton 닫기 버튼
- UTKComponentList: 컴포넌트 리스트
-->
<!-- Style은 C# 코드에서 테마 적용 후 로드됩니다 -->
2025-12-30 20:38:25 +09:00
<ui:VisualElement name="container" class="container" style="flex-grow: 1; flex-shrink: 0;">
<ui:VisualElement name="header" class="component-window-header">
<ui:Label name="title" text="EXPLORER" class="component-window-title" />
<utk:UTKButton name="close-btn" variant="Text" icon-only="true" class="component-window-close-button" />
2025-12-30 20:38:25 +09:00
</ui:VisualElement>
<utk:UTKComponentList />
2025-12-30 20:38:25 +09:00
</ui:VisualElement>
</ui:UXML>