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 類別關聯 ListItemsCollectionEditor (集合編輯器的基類) 與自定義ListItems
屬性。
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 |
取得集合物件 (Collection Object) 的資料型別。 (繼承來源 CollectionEditor) |
Context |
取得指示目前內容的型別描述項。 (繼承來源 CollectionEditor) |
HelpTopic |
取得要針對 ListItemsCollectionEditor 物件顯示的說明主題。 |
HelpTopic |
當按下編輯器的對話方塊 [說明] 按鈕或 F1 鍵時,取得 Help 關鍵字以顯示說明主題或主題清單。 (繼承來源 CollectionEditor) |
IsDropDownResizable |
取得值,表示使用者是否能夠調整下拉式編輯器的大小。 (繼承來源 UITypeEditor) |
NewItemTypes |
取得可為這個集合建立的項目之可用型別。 (繼承來源 CollectionEditor) |