Files
XRLib/Assets/Resources/UIToolkit/Property/Items/UTKDateRangePropertyItem.uxml
2026-02-03 20:43:36 +09:00

17 lines
1.2 KiB
Plaintext

<UXML xmlns="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit" editor-extension-mode="False">
<VisualElement name="item-root" class="utk-property-item utk-property-item--daterange">
<utk:UTKLabel name="name-label" class="utk-property-item__label" />
<VisualElement name="VisualElement" class="utk-property-item__value" style="flex-direction: column; flex-grow: 1; align-items: stretch;">
<VisualElement style="flex-grow: 1; flex-direction: row;">
<utk:UTKInputField name="start-field" style="flex-grow: 1;" />
<utk:UTKButton name="start-picker-btn" text="..." variant="Secondary" class="utk-property-item__picker-btn" style="width: 24px; min-width: 24px;" />
</VisualElement>
<utk:UTKLabel text="~" size="Body2" text-alignment="Center" class="utk-property-item__range-separator" />
<VisualElement style="flex-grow: 1; flex-direction: row;">
<utk:UTKInputField name="end-field" style="flex-grow: 1;" />
<utk:UTKButton name="end-picker-btn" text="..." variant="Secondary" class="utk-property-item__picker-btn" style="width: 24px; min-width: 24px;" />
</VisualElement>
</VisualElement>
</VisualElement>
</UXML>