暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

CreateOrganizationPanel.uxml 1.1KB

1234567891011121314151617181920212223
  1. <UXML xmlns="UnityEngine.UIElements">
  2. <VisualElement class="flex-container column main">
  3. <VisualElement class="flex-container grow">
  4. <Label name="createLabel" class="title"/>
  5. <VisualElement class="field">
  6. <TextField name="orgName"/>
  7. <Label name="orgNameNotification" class="notification"/>
  8. </VisualElement>
  9. <VisualElement name="datacenter" class="field">
  10. <Label name="datacenterLabel" class="field-label"/>
  11. </VisualElement>
  12. <VisualElement name="dataCenterRetryContainer" class="row hidden">
  13. <Label name="dataCenterRetryAlert" class="alert-label"/>
  14. <Button name="dataCenterRetryButton"/>
  15. </VisualElement>
  16. </VisualElement>
  17. <VisualElement class="row flex-container flex-end">
  18. <Button class="footerButton" name="back"/>
  19. <Button class="footerButton" name="create"/>
  20. </VisualElement>
  21. <VisualElement name="gettingDatacenters" class="flex-end"/>
  22. </VisualElement>
  23. </UXML>