MenuItemStyleCollectionEditor クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
関連する MenuItemStyleCollection コントロールの Menu オブジェクトにコンポーネント エディターを提供します。
public ref class MenuItemStyleCollectionEditor : System::ComponentModel::Design::CollectionEditor
public class MenuItemStyleCollectionEditor : System.ComponentModel.Design.CollectionEditor
type MenuItemStyleCollectionEditor = class
inherit CollectionEditor
Public Class MenuItemStyleCollectionEditor
Inherits CollectionEditor
- 継承
例
次のコード例は、属性を EditorAttribute 使用して、コレクションを MenuItemStyleCollectionEditor 取得および UITypeEditor 設定するカスタム コントロール (クラスから WebControl 派生) 内のプロパティに、クラス (コレクション エディター基底クラス) を関連付ける方法を MenuItemStyleCollection 示しています。
private MenuItemStyleCollection menuItemStyles;
// Associate the MenuItemStyleCollectionEditor with the
// LevelMenuItemStyles.
[Editor(typeof(System.Web.UI.Design.WebControls.
MenuItemStyleCollectionEditor),
typeof(UITypeEditor))]
public MenuItemStyleCollection LevelMenuItemStyles
{
get { return menuItemStyles; }
set { menuItemStyles = value; }
} // LevelMenuItemStyles
Private menuItemStyles As MenuItemStyleCollection
' Associate the MenuItemStyleCollectionEditor with the
' LevelMenuItemStyles.
<EditorAttribute( GetType(System.Web.UI.Design.WebControls. _
MenuItemStyleCollectionEditor), _
GetType(UITypeEditor))> _
Public Property LevelMenuItemStyles() As MenuItemStyleCollection
Get
Return menuItemStyles
End Get
Set
menuItemStyles = value
End Set
End Property ' LevelMenuItemStyles
注釈
このクラスはMenuItemStyleCollectionEditor、オブジェクトのコントロールの下で、デザイン時に関連付けられたMenuコントロール内のMenuItemStyleCollectionオブジェクトの要素を編集MenuItemStyleするためのユーザー インターフェイスをMenuDesigner提供します。
コントロールのMenuItemStyleCollection各LevelMenuItemStylesプロパティMenuとLevelSelectedStyles関連付けられています。 これらの MenuItemStyleCollection オブジェクトは、メニュー構造のレベル (入れ子の深さ) に依存するメニュー項目にスタイルを適用するために使用されます。
MenuItemStyleCollectionEditorたとえば、ビジュアル デザイナーの [プロパティ] グリッドの LevelMenuItemStyles または LevelSelectedStyles 行で省略記号ボタン (...) を選択すると呼び出されます。
このメソッドは CanSelectMultipleInstances 常に、エディターで一度に 1 つのオブジェクトしか選択できないことを示すために戻 false
ります。 このメソッドは CreateCollectionForm 、現在 MenuItemStyleCollectionのフォームを表示および編集する新しいフォームを作成します。
このメソッドは CreateInstance 、指定したコレクション項目の種類の新しいインスタンスを作成します。 このメソッドは CreateNewItemTypes 、エディターで作成できる型の配列を返します。
コンストラクター
MenuItemStyleCollectionEditor(Type) |
MenuItemStyleCollectionEditor クラスの新しいインスタンスを初期化します。 |
プロパティ
CollectionItemType |
コレクション内の各項目のデータ型を取得します。 (継承元 CollectionEditor) |
CollectionType |
コレクション オブジェクトのデータ型を取得します。 (継承元 CollectionEditor) |
Context |
現在のコンテキストを示す型記述子を取得します。 (継承元 CollectionEditor) |
HelpTopic |
エディターのダイアログ ボックスの [ヘルプ] ボタンまたは F1 キーが押されたときにヘルプ トピックまたはトピック リストを表示するためのヘルプ キーワードを取得します。 (継承元 CollectionEditor) |
IsDropDownResizable |
ユーザーがドロップダウン エディターのサイズを変更できるかどうかを示す値を取得します。 (継承元 UITypeEditor) |
NewItemTypes |
コレクションに対して作成できる項目の有効な型を取得します。 (継承元 CollectionEditor) |