可视化组件特性
# 表单
FormFieldAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
default_height | int | 256 | 缺省高度 |
# 网格
GridDataTableAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
default_height | int | 256 | 缺省高度 |
# 自定义对象
CustomObjectAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
default_height | int | 256 | 缺省高度 |
# 单行文本
LineEditAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
max_length | int | 0 | 输入最大长度 |
placeholder_Text | string | null | 占位符文本 |
# 数值编辑框
NumberAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
min_value | double | 0 | 最小值 |
max_value | double | double.MaxValue | 最大值 |
step | double | 1 | 滚动增加值 |
# 单选按钮
CheckButtonAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
on_text | string | 是 | 选中标题 |
off_text | string | 否 | 未选中标题 |
# 颜色拾取器
ColorPickerAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
width | int | 64 | 宽度 |
height | int | 64 | 高度 |
# 图片
ImageAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
width | int | 64 | 宽度 |
height | int | 64 | 高度 |
default_dir | string | res:// | 缺省选择目录 |
# 组合框
OptionButtonAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
op_type | OptionButtonType | 无 | 组合框类型 |
activator_type | Type | 无 | 反射类型 |
# 多行文本
TextEditAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
height | int | 64 | 缺省高度 |
# 动画帧
AnimateFrameAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
default_animate_name | string | default | 缺省动画 |
default_dir | string | res:// | 缺省目录 |
witdh | int | 0 | 缺省高度 |
height | int | 0 | 缺省高度 |
offsetx | int | 0 | 动画偏移X |
offsety | int | 0 | 动画偏移Y |
# 自定义代码对象
CustomCodeObjectAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
base_class_name | string | 无 | 反射类型基类名称 |
# 路径选择框
PathSelectAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
title | string | 无 | 标题 |
default_directory | string | 缺省目录 | |
filters | string[] | 无 | 过滤文件组 |
# 富文本
RichTextAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
height | int | 64 | 缺省高度 |
# 数组
ArrayAttribute
参数 | 类型 | 默认 | 注释 |
---|---|---|---|
name | string | 无 | 名称 |
height | int | 64 | 缺省高度 |
field_type | FieldType | 无 | 字段类型 |
param | object[] | 无 | 对应可视化组件类型的参数,如字段类型为数值,参数则为数值组件参数(最小值,最大值,滚动值) |