dzduole 4be683fb33 中文和声音头像OK 1 ay önce
..
ChangeListElements 4be683fb33 中文和声音头像OK 1 ay önce
Menus 4be683fb33 中文和声音头像OK 1 ay önce
AdapterListView.cs 4be683fb33 中文和声音头像OK 1 ay önce
AdapterListView.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
AlertBox.cs 4be683fb33 中文和声音头像OK 1 ay önce
AlertBox.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
BetterTextField.cs 4be683fb33 中文和声音头像OK 1 ay önce
BetterTextField.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
ChangeEntryGroup.cs 4be683fb33 中文和声音头像OK 1 ay önce
ChangeEntryGroup.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
ChangeListElements.meta 4be683fb33 中文和声音头像OK 1 ay önce
ChangesGroupHeader.cs 4be683fb33 中文和声音头像OK 1 ay önce
ChangesGroupHeader.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
ErrorPageView.cs 4be683fb33 中文和声音头像OK 1 ay önce
ErrorPageView.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
HistoryEntryComponent.cs 4be683fb33 中文和声音头像OK 1 ay önce
HistoryEntryComponent.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
IconButton.cs 4be683fb33 中文和声音头像OK 1 ay önce
IconButton.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
IconTextButton.cs 4be683fb33 中文和声音头像OK 1 ay önce
IconTextButton.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
ListNotice.cs 4be683fb33 中文和声音头像OK 1 ay önce
ListNotice.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
Menus.meta 4be683fb33 中文和声音头像OK 1 ay önce
PageComponent.cs 4be683fb33 中文和声音头像OK 1 ay önce
PageComponent.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
Paginator.cs 4be683fb33 中文和声音头像OK 1 ay önce
Paginator.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
ProgressView.cs 4be683fb33 中文和声音头像OK 1 ay önce
ProgressView.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
README.md 4be683fb33 中文和声音头像OK 1 ay önce
README.md.meta 4be683fb33 中文和声音头像OK 1 ay önce
SearchBar.cs 4be683fb33 中文和声音头像OK 1 ay önce
SearchBar.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
TabPageComponent.cs 4be683fb33 中文和声音头像OK 1 ay önce
TabPageComponent.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
TabView.cs 4be683fb33 中文和声音头像OK 1 ay önce
TabView.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
TextButton.cs 4be683fb33 中文和声音头像OK 1 ay önce
TextButton.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce
TopBar.cs 4be683fb33 中文和声音头像OK 1 ay önce
TopBar.cs.meta 4be683fb33 中文和声音头像OK 1 ay önce

README.md

Resources

This directory contains the UIElements-based user interface components.

Overview

Each component is defined as its own class and file in this directory.

Adding a New Component

Each component is a C# class that extends the UiElements' VisualElement class and provides a UXML factory. If no UXML parameters are required/desired, a simple factory like this (taken from AlertBar) works:

public new class UxmlFactory : UxmlFactory<AlertBar> { }

Just adding this line to the bottom of the component class with the <AlertBar> replaced with the name of the class. Adding UXML parameters used to be covered in the official docs. Until it is returned: look at the source code for any UiElements class such as TextElement.

To use the component in UXML (with editor inspections) the xml schema needs to be updated within the Unity Editor. Instructions on how to do that is contained in ../Assets/.