[]
用于标注对象列表类型的属性,被标注的类型必须是IEnumerable<INamedObject>
public class ObjectListPropertyAttribute : HyperlinkEditorPropertyAttribute
用于标注对象列表类型的属性,被标注的类型必须是IEnumerable<INamedObject>
public ObjectListPropertyAttribute()
是否允许移除所有元素
public bool AllowRemoveAllItems { get; set; }
类型 | 描述 |
---|---|
bool |
默认元素名前缀
public virtual string DefaultName { get; set; }
类型 | 描述 |
---|---|
string |
元素类型
public Type ItemType { get; set; }
类型 | 描述 |
---|---|
System.Type |
列表中元素的最大个数,为-1表示不限制最大个数。默认值为-1
public int MaxCount { get; set; }
类型 | 描述 |
---|---|
int |