2025-12-31 20:02:36 +09:00
|
|
|
<ui:UXML xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns:ui="UnityEngine.UIElements"
|
2026-01-22 20:12:22 +09:00
|
|
|
xmlns:utk="UVC.UIToolkit"
|
2025-12-31 20:02:36 +09:00
|
|
|
noNamespaceSchemaLocation="../../../../../UIElementsSchema/UIElements.xsd"
|
|
|
|
|
editor-extension-mode="False">
|
|
|
|
|
<!--
|
|
|
|
|
UTKImageListWindow.uxml
|
|
|
|
|
|
|
|
|
|
UTKImageList를 래핑하는 윈도우 컴포넌트입니다.
|
|
|
|
|
헤더(타이틀, 닫기 버튼)와 내부 UTKImageList로 구성됩니다.
|
|
|
|
|
|
|
|
|
|
구조:
|
|
|
|
|
- container: 메인 컨테이너
|
|
|
|
|
- header: 윈도우 헤더
|
|
|
|
|
- title: 윈도우 제목
|
2026-01-22 20:12:22 +09:00
|
|
|
- close-btn: UTKButton 닫기 버튼
|
2025-12-31 20:02:36 +09:00
|
|
|
- UTKImageList: 이미지 리스트 컴포넌트
|
|
|
|
|
-->
|
2026-01-22 20:12:22 +09:00
|
|
|
<!-- Style은 C# 코드에서 테마 적용 후 로드됩니다 -->
|
2025-12-31 20:02:36 +09:00
|
|
|
<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" />
|
2026-01-22 20:12:22 +09:00
|
|
|
<utk:UTKButton name="close-btn" variant="Text" icon-only="true" class="window-close-button" />
|
2025-12-31 20:02:36 +09:00
|
|
|
</ui:VisualElement>
|
|
|
|
|
|
|
|
|
|
<!-- 내부 UTKImageList 컴포넌트 -->
|
2026-01-22 20:12:22 +09:00
|
|
|
<utk:UTKImageList />
|
2025-12-31 20:02:36 +09:00
|
|
|
</ui:VisualElement>
|
|
|
|
|
</ui:UXML>
|