Files
XRLib/Assets/Resources/UIToolkit/Window/UTKImageListWindow.uxml
2025-12-31 20:02:36 +09:00

31 lines
1.2 KiB
Plaintext

<ui:UXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:ui="UnityEngine.UIElements"
xmlns:uvc="UVC.UIToolkit.List"
noNamespaceSchemaLocation="../../../../../UIElementsSchema/UIElements.xsd"
editor-extension-mode="False">
<!--
UTKImageListWindow.uxml
UTKImageList를 래핑하는 윈도우 컴포넌트입니다.
헤더(타이틀, 닫기 버튼)와 내부 UTKImageList로 구성됩니다.
구조:
- container: 메인 컨테이너
- header: 윈도우 헤더
- title: 윈도우 제목
- close-btn: 닫기 버튼
- UTKImageList: 이미지 리스트 컴포넌트
-->
<Style src="project://database/Assets/Resources/UIToolkit/Window/UTKImageListWindow.uss" />
<ui:VisualElement name="container" class="image-list-window-container">
<!-- 헤더 영역 -->
<ui:VisualElement name="header" class="window-header">
<ui:Label name="title" text="LIBRARY" class="window-title" />
<ui:Button name="close-btn" class="window-close-button" />
</ui:VisualElement>
<!-- 내부 UTKImageList 컴포넌트 -->
<uvc:UTKImageList />
</ui:VisualElement>
</ui:UXML>