Files
XRLib/Assets/Resources/UIToolkit/Property/Views/UTKDateRangePropertyItemView.uxml
2026-02-04 20:31:52 +09:00

14 lines
910 B
XML

<?xml version="1.0" encoding="utf-8"?>
<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit">
<ui:VisualElement name="container" class="utk-property-item-view-container">
<utk:UTKLabel name="label" text="Label" class="utk-property-item-view__label" />
<ui:VisualElement name="value-container" class="utk-property-item-view__value">
<utk:UTKInputField name="start-field" class="utk-property-item-view__field" />
<utk:UTKButton name="start-picker-btn" text="..." class="utk-property-item-view__picker-btn" />
<utk:UTKLabel text="~" class="utk-property-item-view__range-separator" />
<utk:UTKInputField name="end-field" class="utk-property-item-view__field" />
<utk:UTKButton name="end-picker-btn" text="..." class="utk-property-item-view__picker-btn" />
</ui:VisualElement>
</ui:VisualElement>
</ui:UXML>