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、 または 同様のコントロールからListControl派生したコントロール内の オブジェクトのListItemCollection要素を編集ListItemするためのユーザー インターフェイスを提供します。
ListItemsCollectionEditorは、ビジュアル デザイナーの [プロパティ] グリッドの ListItems プロパティの省略記号 (...) ボタンを選択することによって呼び出されます。
メソッドは CanSelectMultipleInstances 常に を false
返し、エディターで一度に選択できるオブジェクトは 1 つだけであることを示します。 プロパティは HelpTopic 、エディターに表示されるヘルプ トピックの名前を返します。
コンストラクター
ListItemsCollectionEditor(Type) |
ListItemsCollectionEditor クラスの新しいインスタンスを初期化します。 |
プロパティ
CollectionItemType |
コレクション内の各項目のデータ型を取得します。 (継承元 CollectionEditor) |
CollectionType |
コレクション オブジェクトのデータ型を取得します。 (継承元 CollectionEditor) |
Context |
現在のコンテキストを示す型記述子を取得します。 (継承元 CollectionEditor) |
HelpTopic |
ListItemsCollectionEditor オブジェクトに対して表示するヘルプ トピックを取得します。 |
HelpTopic |
エディターのダイアログ ボックスの [ヘルプ] ボタンまたは F1 キーが押されたときにヘルプ トピックまたはトピック リストを表示するためのヘルプ キーワードを取得します。 (継承元 CollectionEditor) |
IsDropDownResizable |
ユーザーがドロップダウン エディターのサイズを変更できるかどうかを示す値を取得します。 (継承元 UITypeEditor) |
NewItemTypes |
コレクションに対して作成できる項目の有効な型を取得します。 (継承元 CollectionEditor) |
メソッド
適用対象
こちらもご覧ください
.NET