DesignerActionMethodItem クラス
アセンブリ: System.Design (system.design.dll 内)


DesignerActionMethodItem クラスは、スマート タグ パネル内の個別の項目を表します。この型の項目は、DesignerActionList から派生したクラスのプログラマ指定のメソッドを呼び出す、アクティブなユーザー インターフェイス要素 (ハイパーリンクなど) として表示されます。項目とメソッドの関連付けは、MemberName プロパティの値をとおして保持されます。この項目が呼び出すメソッドは、パラメータを受け取ったり、値を返したりしません。
個々のパネル項目は、DesignerActionList クラスの GetSortedActionItems メソッドへの呼び出しによってまとめて関連付けられ、パネルを形成します。

DesignerActionItem オブジェクトのコレクションを作成する方法を次のコード例に示します。
スマート タグを実装するコード例の全体については、「方法 : Windows フォーム コンポーネントにスマート タグを追加する」を参照してください。
Public Overrides Function GetSortedActionItems() _ As DesignerActionItemCollection Dim items As New DesignerActionItemCollection() 'Define static section header entries. items.Add(New DesignerActionHeaderItem("Appearance")) items.Add(New DesignerActionHeaderItem("Information")) 'Boolean property for locking color selections. items.Add(New DesignerActionPropertyItem( _ "LockColors", _ "Lock Colors", _ "Appearance", _ "Locks the color properties.")) If Not LockColors Then items.Add( _ New DesignerActionPropertyItem( _ "BackColor", _ "Back Color", _ "Appearance", _ "Selects the background color.")) items.Add( _ New DesignerActionPropertyItem( _ "ForeColor", _ "Fore Color", _ "Appearance", _ "Selects the foreground color.")) 'This next method item is also added to the context menu ' (as a designer verb). items.Add( _ New DesignerActionMethodItem( _ Me, _ "InvertColors", _ "Invert Colors", _ "Appearance", _ "Inverts the fore and background colors.", _ True)) End If items.Add( _ New DesignerActionPropertyItem( _ "Text", _ "Text String", _ "Appearance", _ "Sets the display text.")) 'Create entries for static Information section. Dim location As New StringBuilder("Location: ") location.Append(colLabel.Location) Dim size As New StringBuilder("Size: ") size.Append(colLabel.Size) items.Add( _ New DesignerActionTextItem( _ location.ToString(), _ "Information")) items.Add( _ New DesignerActionTextItem( _ size.ToString(), _ "Information")) Return items End Function
public override DesignerActionItemCollection GetSortedActionItems() { DesignerActionItemCollection items = new DesignerActionItemCollection(); //Define static section header entries. items.Add(new DesignerActionHeaderItem("Appearance")); items.Add(new DesignerActionHeaderItem("Information")); //Boolean property for locking color selections. items.Add(new DesignerActionPropertyItem("LockColors" , "Lock Colors", "Appearance", "Locks the color properties.")); if (!LockColors) { items.Add(new DesignerActionPropertyItem("BackColor" , "Back Color", "Appearance", "Selects the background color.")); items.Add(new DesignerActionPropertyItem("ForeColor" , "Fore Color", "Appearance", "Selects the foreground color.")); //This next method item is also added to the context menu // (as a designer verb). items.Add(new DesignerActionMethodItem(this , "InvertColors", "Invert Colors", "Appearance", "Inverts the fore and background colors.", true)); } items.Add(new DesignerActionPropertyItem("Text" , "Text String", "Appearance", "Sets the display text.")); //Create entries for static Information section. StringBuilder location = new StringBuilder("Location: "); location.Append(colLabel.Location); StringBuilder size = new StringBuilder("Size: "); size.Append(colLabel.Size); items.Add(new DesignerActionTextItem(location.ToString(), "Information")); items.Add(new DesignerActionTextItem(size.ToString(), "Information")); return items; }

System.ComponentModel.Design.DesignerActionItem
System.ComponentModel.Design.DesignerActionMethodItem


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerActionList クラス
GetSortedActionItems
MemberName
その他の技術情報
Windows フォームのデザイナ コマンドと DesignerAction オブジェクト モデル
DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, String, Boolean)
アセンブリ: System.Design (system.design.dll 内)

Public Sub New ( _ actionList As DesignerActionList, _ memberName As String, _ displayName As String, _ category As String, _ includeAsDesignerVerb As Boolean _ )
Dim actionList As DesignerActionList Dim memberName As String Dim displayName As String Dim category As String Dim includeAsDesignerVerb As Boolean Dim instance As New DesignerActionMethodItem(actionList, memberName, displayName, category, includeAsDesignerVerb)
public DesignerActionMethodItem ( DesignerActionList actionList, string memberName, string displayName, string category, bool includeAsDesignerVerb )
public: DesignerActionMethodItem ( DesignerActionList^ actionList, String^ memberName, String^ displayName, String^ category, bool includeAsDesignerVerb )
public DesignerActionMethodItem ( DesignerActionList actionList, String memberName, String displayName, String category, boolean includeAsDesignerVerb )
public function DesignerActionMethodItem ( actionList : DesignerActionList, memberName : String, displayName : String, category : String, includeAsDesignerVerb : boolean )

includeAsDesignerVerb パラメータが true に設定されている場合、この項目も DesignerVerb として見なされます。そのため、この項目はコンポーネントのデザイン時のショートカット メニューに追加されます。デザイナ動詞のリストには、デザイナの Verbs コレクション プロパティをとおしてアクセスできます。
DesignerActionMethodItem コンストラクタは、Description プロパティを null 参照 (Visual Basic では Nothing) に設定します。
category パラメータを使用してパネルの項目をグループ化する方法の詳細については、GetSortedActionItems メソッドのトピックを参照してください。


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, String, String)
アセンブリ: System.Design (system.design.dll 内)

Public Sub New ( _ actionList As DesignerActionList, _ memberName As String, _ displayName As String, _ category As String, _ description As String _ )
Dim actionList As DesignerActionList Dim memberName As String Dim displayName As String Dim category As String Dim description As String Dim instance As New DesignerActionMethodItem(actionList, memberName, displayName, category, description)
public DesignerActionMethodItem ( DesignerActionList actionList, string memberName, string displayName, string category, string description )
public: DesignerActionMethodItem ( DesignerActionList^ actionList, String^ memberName, String^ displayName, String^ category, String^ description )
public DesignerActionMethodItem ( DesignerActionList actionList, String memberName, String displayName, String category, String description )
public function DesignerActionMethodItem ( actionList : DesignerActionList, memberName : String, displayName : String, category : String, description : String )

DesignerActionMethodItem コンストラクタは、IncludeAsDesignerVerb プロパティを false に設定します。
category パラメータを使用してパネルの項目をグループ化する方法の詳細については、GetSortedActionItems メソッドのトピックを参照してください。


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, String)
アセンブリ: System.Design (system.design.dll 内)

Public Sub New ( _ actionList As DesignerActionList, _ memberName As String, _ displayName As String, _ category As String _ )
Dim actionList As DesignerActionList Dim memberName As String Dim displayName As String Dim category As String Dim instance As New DesignerActionMethodItem(actionList, memberName, displayName, category)
public DesignerActionMethodItem ( DesignerActionList actionList, string memberName, string displayName, string category )
public: DesignerActionMethodItem ( DesignerActionList^ actionList, String^ memberName, String^ displayName, String^ category )
public DesignerActionMethodItem ( DesignerActionList actionList, String memberName, String displayName, String category )
public function DesignerActionMethodItem ( actionList : DesignerActionList, memberName : String, displayName : String, category : String )

DesignerActionMethodItem コンストラクタは、Description プロパティを null 参照 (Visual Basic では Nothing) に設定し、IncludeAsDesignerVerb プロパティを false に設定します。
category パラメータを使用してパネルの項目をグループ化する方法の詳細については、GetSortedActionItems メソッドのトピックを参照してください。


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DesignerActionMethodItem コンストラクタ

名前 | 説明 |
---|---|
DesignerActionMethodItem (DesignerActionList, String, String) | メソッド名と表示名を指定して、DesignerActionMethodItem クラスの新しいインスタンスを初期化します。 |
DesignerActionMethodItem (DesignerActionList, String, String, Boolean) | 指定したメソッド名と表示名、および項目が他のユーザー インターフェイスのコンテキストで表示されるかどうかを示すフラグを使用して、DesignerActionMethodItem クラスの新しいインスタンスを初期化します。 |
DesignerActionMethodItem (DesignerActionList, String, String, String) | メソッド名、表示名、およびカテゴリ名を指定して、DesignerActionMethodItem クラスの新しいインスタンスを初期化します。 |
DesignerActionMethodItem (DesignerActionList, String, String, String, Boolean) | 指定したメソッド名、表示名、およびカテゴリ名と、項目が他のユーザー インターフェイスのコンテキストで表示されるかどうかを示すフラグを使用して、DesignerActionMethodItem クラスの新しいインスタンスを初期化します。 |
DesignerActionMethodItem (DesignerActionList, String, String, String, String) | 指定したメソッド名とカテゴリ名、および表示テキストと説明テキストを使用して、DesignerActionMethodItem クラスの新しいインスタンスを初期化します。 |
DesignerActionMethodItem (DesignerActionList, String, String, String, String, Boolean) | 指定したメソッド名とカテゴリ名、表示テキストと説明テキスト、および項目が他のユーザー インターフェイスのコンテキストで表示されるかどうかを示すフラグを使用して、DesignerActionMethodItem クラスの新しいインスタンスを初期化します。 |

関連項目
DesignerActionMethodItem クラスDesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerVerb
ComponentDesigner.Verbs プロパティ
DesignerActionList クラス
その他の技術情報
Windows フォームのデザイナ コマンドと DesignerAction オブジェクト モデルDesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, String, String, Boolean)
アセンブリ: System.Design (system.design.dll 内)

Public Sub New ( _ actionList As DesignerActionList, _ memberName As String, _ displayName As String, _ category As String, _ description As String, _ includeAsDesignerVerb As Boolean _ )
Dim actionList As DesignerActionList Dim memberName As String Dim displayName As String Dim category As String Dim description As String Dim includeAsDesignerVerb As Boolean Dim instance As New DesignerActionMethodItem(actionList, memberName, displayName, category, description, includeAsDesignerVerb)
public DesignerActionMethodItem ( DesignerActionList actionList, string memberName, string displayName, string category, string description, bool includeAsDesignerVerb )
public: DesignerActionMethodItem ( DesignerActionList^ actionList, String^ memberName, String^ displayName, String^ category, String^ description, bool includeAsDesignerVerb )
public DesignerActionMethodItem ( DesignerActionList actionList, String memberName, String displayName, String category, String description, boolean includeAsDesignerVerb )
public function DesignerActionMethodItem ( actionList : DesignerActionList, memberName : String, displayName : String, category : String, description : String, includeAsDesignerVerb : boolean )

includeAsDesignerVerb パラメータが true に設定されている場合、この項目も DesignerVerb として見なされます。そのため、この項目はコンポーネントのデザイン時のショートカット メニューに追加されます。デザイナ動詞のリストには、デザイナの Verbs コレクション プロパティをとおしてアクセスできます。
category パラメータを使用してパネルの項目をグループ化する方法の詳細については、GetSortedActionItems メソッドのトピックを参照してください。

DesignerActionItem オブジェクトのコレクションを作成する方法を次のコード例に示します。
スマート タグを実装するコード例の全体については、「方法 : Windows フォーム コンポーネントにスマート タグを追加する」を参照してください。
Public Overrides Function GetSortedActionItems() _ As DesignerActionItemCollection Dim items As New DesignerActionItemCollection() 'Define static section header entries. items.Add(New DesignerActionHeaderItem("Appearance")) items.Add(New DesignerActionHeaderItem("Information")) 'Boolean property for locking color selections. items.Add(New DesignerActionPropertyItem( _ "LockColors", _ "Lock Colors", _ "Appearance", _ "Locks the color properties.")) If Not LockColors Then items.Add( _ New DesignerActionPropertyItem( _ "BackColor", _ "Back Color", _ "Appearance", _ "Selects the background color.")) items.Add( _ New DesignerActionPropertyItem( _ "ForeColor", _ "Fore Color", _ "Appearance", _ "Selects the foreground color.")) 'This next method item is also added to the context menu ' (as a designer verb). items.Add( _ New DesignerActionMethodItem( _ Me, _ "InvertColors", _ "Invert Colors", _ "Appearance", _ "Inverts the fore and background colors.", _ True)) End If items.Add( _ New DesignerActionPropertyItem( _ "Text", _ "Text String", _ "Appearance", _ "Sets the display text.")) 'Create entries for static Information section. Dim location As New StringBuilder("Location: ") location.Append(colLabel.Location) Dim size As New StringBuilder("Size: ") size.Append(colLabel.Size) items.Add( _ New DesignerActionTextItem( _ location.ToString(), _ "Information")) items.Add( _ New DesignerActionTextItem( _ size.ToString(), _ "Information")) Return items End Function
public override DesignerActionItemCollection GetSortedActionItems() { DesignerActionItemCollection items = new DesignerActionItemCollection(); //Define static section header entries. items.Add(new DesignerActionHeaderItem("Appearance")); items.Add(new DesignerActionHeaderItem("Information")); //Boolean property for locking color selections. items.Add(new DesignerActionPropertyItem("LockColors" , "Lock Colors", "Appearance", "Locks the color properties.")); if (!LockColors) { items.Add(new DesignerActionPropertyItem("BackColor" , "Back Color", "Appearance", "Selects the background color.")); items.Add(new DesignerActionPropertyItem("ForeColor" , "Fore Color", "Appearance", "Selects the foreground color.")); //This next method item is also added to the context menu // (as a designer verb). items.Add(new DesignerActionMethodItem(this , "InvertColors", "Invert Colors", "Appearance", "Inverts the fore and background colors.", true)); } items.Add(new DesignerActionPropertyItem("Text" , "Text String", "Appearance", "Sets the display text.")); //Create entries for static Information section. StringBuilder location = new StringBuilder("Location: "); location.Append(colLabel.Location); StringBuilder size = new StringBuilder("Size: "); size.Append(colLabel.Size); items.Add(new DesignerActionTextItem(location.ToString(), "Information")); items.Add(new DesignerActionTextItem(size.ToString(), "Information")); return items; }


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String)
アセンブリ: System.Design (system.design.dll 内)

Public Sub New ( _ actionList As DesignerActionList, _ memberName As String, _ displayName As String _ )
Dim actionList As DesignerActionList Dim memberName As String Dim displayName As String Dim instance As New DesignerActionMethodItem(actionList, memberName, displayName)
public DesignerActionMethodItem ( DesignerActionList actionList, string memberName, string displayName )
public: DesignerActionMethodItem ( DesignerActionList^ actionList, String^ memberName, String^ displayName )
public DesignerActionMethodItem ( DesignerActionList actionList, String memberName, String displayName )
public function DesignerActionMethodItem ( actionList : DesignerActionList, memberName : String, displayName : String )

DesignerActionMethodItem コンストラクタは、Category プロパティと Description プロパティを null 参照 (Visual Basic では Nothing) に、また IncludeAsDesignerVerb プロパティを false に設定します。


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, Boolean)
アセンブリ: System.Design (system.design.dll 内)

Public Sub New ( _ actionList As DesignerActionList, _ memberName As String, _ displayName As String, _ includeAsDesignerVerb As Boolean _ )
Dim actionList As DesignerActionList Dim memberName As String Dim displayName As String Dim includeAsDesignerVerb As Boolean Dim instance As New DesignerActionMethodItem(actionList, memberName, displayName, includeAsDesignerVerb)
public DesignerActionMethodItem ( DesignerActionList actionList, string memberName, string displayName, bool includeAsDesignerVerb )
public: DesignerActionMethodItem ( DesignerActionList^ actionList, String^ memberName, String^ displayName, bool includeAsDesignerVerb )
public DesignerActionMethodItem ( DesignerActionList actionList, String memberName, String displayName, boolean includeAsDesignerVerb )
public function DesignerActionMethodItem ( actionList : DesignerActionList, memberName : String, displayName : String, includeAsDesignerVerb : boolean )

includeAsDesignerVerb パラメータが true に設定されている場合、この項目も DesignerVerb として見なされます。そのため、この項目はコンポーネントのデザイン時のショートカット メニューに追加されます。Visual Studio では、コマンドがプロパティ ウィンドウの属性ペインにも追加されます。デザイナ動詞のリストには、デザイナの Verbs コレクション プロパティをとおしてアクセスできます。
DesignerActionMethodItem コンストラクタは、Category プロパティと Description プロパティを null 参照 (Visual Basic では Nothing) に設定します。


Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


DesignerActionMethodItem プロパティ

名前 | 説明 | |
---|---|---|
![]() | AllowAssociate | この項目を同じ Category プロパティ値を持つ項目のグループに配置できるかどうかを示す値を取得または設定します。 ( DesignerActionItem から継承されます。) |
![]() | Category | 項目のグループ名を取得します。 ( DesignerActionItem から継承されます。) |
![]() | Description | 項目の補足テキストを取得します。 ( DesignerActionItem から継承されます。) |
![]() | DisplayName | この項目のテキストを取得します。 ( DesignerActionItem から継承されます。) |
![]() | IncludeAsDesignerVerb | DesignerActionMethodItem が他のユーザー インターフェイスのコンテキストで表示されることを示す値を取得します。 |
![]() | MemberName | この DesignerActionMethodItem が関連付けられているメソッドの名前を取得します。 |
![]() | Properties | プログラマ定義のキーと値のペアを格納するために使用できるコレクションへの参照を取得します。 ( DesignerActionItem から継承されます。) |
![]() | RelatedComponent | 現在のパネルに DesignerActionMethodItem オブジェクトを提供するコンポーネントを取得または設定します。 |

関連項目
DesignerActionMethodItem クラスSystem.ComponentModel.Design 名前空間
DesignerActionList クラス
GetSortedActionItems
MemberName
その他の技術情報
Windows フォームのデザイナ コマンドと DesignerAction オブジェクト モデルDesignerActionMethodItem メソッド

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | Invoke | DesignerActionMethodItem に関連付けられているメソッドをプログラムによって実行します。 |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 ( Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 ( Object から継承されます。) |

関連項目
DesignerActionMethodItem クラスSystem.ComponentModel.Design 名前空間
DesignerActionList クラス
GetSortedActionItems
MemberName
その他の技術情報
Windows フォームのデザイナ コマンドと DesignerAction オブジェクト モデルDesignerActionMethodItem メンバ
DesignerActionList から派生したクラスのメソッドに関連付けられているスマート タグ パネル項目を表します。
DesignerActionMethodItem データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | AllowAssociate | この項目を同じ Category プロパティ値を持つ項目のグループに配置できるかどうかを示す値を取得または設定します。(DesignerActionItem から継承されます。) |
![]() | Category | 項目のグループ名を取得します。(DesignerActionItem から継承されます。) |
![]() | Description | 項目の補足テキストを取得します。(DesignerActionItem から継承されます。) |
![]() | DisplayName | この項目のテキストを取得します。(DesignerActionItem から継承されます。) |
![]() | IncludeAsDesignerVerb | DesignerActionMethodItem が他のユーザー インターフェイスのコンテキストで表示されることを示す値を取得します。 |
![]() | MemberName | この DesignerActionMethodItem が関連付けられているメソッドの名前を取得します。 |
![]() | Properties | プログラマ定義のキーと値のペアを格納するために使用できるコレクションへの参照を取得します。(DesignerActionItem から継承されます。) |
![]() | RelatedComponent | 現在のパネルに DesignerActionMethodItem オブジェクトを提供するコンポーネントを取得または設定します。 |

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | Invoke | DesignerActionMethodItem に関連付けられているメソッドをプログラムによって実行します。 |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

名前 | 説明 | |
---|---|---|
![]() | Finalize | Object がガベージ コレクションにより収集される前に、その Object がリソースを解放し、その他のクリーンアップ操作を実行できるようにします。 (Object から継承されます。) |
![]() | MemberwiseClone | 現在の Object の簡易コピーを作成します。 (Object から継承されます。) |

関連項目
DesignerActionMethodItem クラスSystem.ComponentModel.Design 名前空間
DesignerActionList クラス
GetSortedActionItems
MemberName
その他の技術情報
Windows フォームのデザイナ コマンドと DesignerAction オブジェクト モデルWeblioに収録されているすべての辞書からDesignerActionMethodItemを検索する場合は、下記のリンクをクリックしてください。

- DesignerActionMethodItemのページへのリンク