ListItemsCollectionEditor 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
为从 ListItemCollection 或相似控件派生的控件中的 ListControl 对象提供组件编辑器。
public ref class ListItemsCollectionEditor : System::ComponentModel::Design::CollectionEditor
public class ListItemsCollectionEditor : System.ComponentModel.Design.CollectionEditor
type ListItemsCollectionEditor = class
inherit CollectionEditor
Public Class ListItemsCollectionEditor
Inherits CollectionEditor
- 继承
示例
下面的代码示例演示如何使用 EditorAttribute 类将 类和 UITypeEditor 类 (集合编辑器的基类) 与自定义ListItems
属性相关联ListItemsCollectionEditor。
private ListItemCollection items = null;
// Associate the ListItemsCollectionEditor with the ListItems.
[EditorAttribute(typeof(System.Web.UI.Design.WebControls.
ListItemsCollectionEditor),
typeof(UITypeEditor))]
public ListItemCollection ListItems
{
get { return items; }
} // ListItems
Private items As ListItemCollection
' Associate the ListItemsCollectionEditor with the ListItems.
<EditorAttribute( GetType(System.Web.UI.Design.WebControls. _
ListItemsCollectionEditor), _
GetType(UITypeEditor))> _
Public ReadOnly Property ListItems() As ListItemCollection
Get
Return items
End Get
End Property ' ListItems
注解
类ListItemsCollectionEditor提供了一个用户界面,ListItem用于编辑派生自 ListControl 或类似控件的 控件中的 对象的元素ListItemCollection。
ListItemsCollectionEditor通过在可视化设计器的“属性”网格的 ListItems 属性上选择省略号 (...) 按钮来调用 。
方法 CanSelectMultipleInstances 始终返回 false
以指示在编辑器中一次只能选择一个对象。 属性 HelpTopic 返回编辑器显示的帮助主题的名称。
构造函数
ListItemsCollectionEditor(Type) |
初始化 ListItemsCollectionEditor 类的新实例。 |
属性
CollectionItemType |
获取集合中每项的数据类型。 (继承自 CollectionEditor) |
CollectionType |
获取集合对象的数据类型。 (继承自 CollectionEditor) |
Context |
获取指示当前上下文的类型说明符。 (继承自 CollectionEditor) |
HelpTopic |
获取要为 ListItemsCollectionEditor 对象显示的帮助主题。 |
HelpTopic |
在用户按下编辑器对话框中的“帮助”按钮或 F1 键时,获取“帮助”关键字以显示“帮助”主题或主题列表。 (继承自 CollectionEditor) |
IsDropDownResizable |
获取一个值,该值指示是否应由用户调整下拉编辑器的大小。 (继承自 UITypeEditor) |
NewItemTypes |
获取可为此集合创建的项的可用类型。 (继承自 CollectionEditor) |