DesignerActionMethodItem Constructor (DesignerActionList^, String^, String^, String^, String^, Boolean)
Initializes a new instance of the DesignerActionMethodItem class, with the specified method and category names, display and description text, and a flag that indicates whether the item should appear in other user interface contexts.
Assembly: System.Design (in System.Design.dll)
public: DesignerActionMethodItem( DesignerActionList^ actionList, String^ memberName, String^ displayName, String^ category, String^ description, bool includeAsDesignerVerb )
Parameters
- actionList
-
Type:
System.ComponentModel.Design::DesignerActionList^
The DesignerActionList that contains the method this item is associated with.
- memberName
-
Type:
System::String^
The case-sensitive name of the method in the class derived from DesignerActionList to invoke through the panel item.
- displayName
-
Type:
System::String^
The panel text for this item.
- category
-
Type:
System::String^
The case-sensitive String used to group similar items on the panel.
- description
-
Type:
System::String^
Supplemental text for this item, used in ToolTips or the status bar.
- includeAsDesignerVerb
-
Type:
System::Boolean
A flag that specifies whether to also treat the associated method as a designer verb for the associated component.
If the includeAsDesignerVerb parameter is set to true, then this item is also considered a DesignerVerb; therefore, it will be added to the component's design-time shortcut menu. A list of designer verbs can be accessed through the designer's Verbs collection property.
For more information about how the category parameter is used to group items on a panel, see the GetSortedActionItems method.
The following code example demonstrates how to create a collection of DesignerActionItem objects.
For a full example of implementing smart tags, see How to: Attach Smart Tags to a Windows Forms Component.
Available since 2.0