Files
XRLib/Assets/Resources/UIToolkit/Property/Views/UTKDateTimeRangePropertyItemView.uxml

17 lines
1.1 KiB
Plaintext

<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:utk="UVC.UIToolkit" editor-extension-mode="False">
<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" style="flex-grow: 1;flex-direction: column;">
<ui:VisualElement style="flex-grow: 1; flex-direction: row;">
<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" />
</ui:VisualElement>
<utk:UTKLabel text="~" class="utk-property-item-view__range-separator" />
<ui:VisualElement style="flex-grow: 1; flex-direction: row;">
<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:VisualElement>
</ui:UXML>