DesignerActionMethodItemとは? わかりやすく解説

DesignerActionMethodItem クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

DesignerActionList から派生したクラスメソッド関連付けられているスマート タグ パネル項目を表します

名前空間: System.ComponentModel.Design
アセンブリ: System.Design (system.design.dll 内)
構文構文

Public Class DesignerActionMethodItem
    Inherits DesignerActionItem
Dim instance As DesignerActionMethodItem
public class DesignerActionMethodItem : DesignerActionItem
public ref class DesignerActionMethodItem :
 public DesignerActionItem
public class DesignerActionMethodItem extends
 DesignerActionItem
public class DesignerActionMethodItem extends
 DesignerActionItem
解説解説

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.Object
   System.ComponentModel.Design.DesignerActionItem
    System.ComponentModel.Design.DesignerActionMethodItem
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerActionList クラス
GetSortedActionItems
MemberName
その他の技術情報
Windows フォームデザイナ コマンドと DesignerAction オブジェクト モデル

DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, String, Boolean)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

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

名前空間: System.ComponentModel.Design
アセンブリ: 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
)

パラメータ

actionList

この項目に関連付けられたメソッドを持つ DesignerActionList。

memberName

パネル項目を通じて呼び出す、DesignerActionList から派生したクラスでのメソッド名 (大文字と小文字区別される)。

displayName

この項目のパネル テキスト

category

パネル上の同様の項目をグループ化するために使用する大文字と小文字区別される String

includeAsDesignerVerb

関連付けられたメソッドも、関連付けられたコンポーネントデザイナ動詞として扱うかどうか指定するフラグ

解説解説
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerActionMethodItem クラス
DesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerVerb
ComponentDesigner.Verbs プロパティ
DesignerActionList クラス
その他の技術情報
Windows フォームデザイナ コマンドと DesignerAction オブジェクト モデル

DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, String, String)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

指定したメソッド名とカテゴリ名、および表示テキスト説明テキスト使用して、DesignerActionMethodItem クラス新しインスタンス初期化します。

名前空間: System.ComponentModel.Design
アセンブリ: 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
)

パラメータ

actionList

この項目に関連付けられたメソッドを持つ DesignerActionList。

memberName

パネル項目を通じて呼び出す、DesignerActionList から派生したクラスでのメソッド名 (大文字と小文字区別される)。

displayName

この項目のパネル テキスト

category

パネル上の同様の項目をグループ化するために使用する大文字と小文字区別される String

description

ツールヒントステータス バー使用する、この項目の補足テキスト

解説解説

DesignerActionMethodItem コンストラクタは、IncludeAsDesignerVerb プロパティfalse設定します

category パラメータ使用してパネルの項目をグループ化する方法詳細については、GetSortedActionItems メソッドトピック参照してください

.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerActionMethodItem クラス
DesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerVerb
ComponentDesigner.Verbs プロパティ
DesignerActionList クラス
その他の技術情報
Windows フォームデザイナ コマンドと DesignerAction オブジェクト モデル

DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, String)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

メソッド名、表示名、およびカテゴリ名を指定して、DesignerActionMethodItem クラス新しインスタンス初期化します。

名前空間: System.ComponentModel.Design
アセンブリ: 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
)

パラメータ

actionList

この項目に関連付けられたメソッドを持つ DesignerActionList。

memberName

パネル項目を通じて呼び出す、DesignerActionList から派生したクラスでのメソッド名 (大文字と小文字区別される)。

displayName

この項目のパネル テキスト

category

パネル上の同様の項目をグループ化するために使用する大文字と小文字区別される String

解説解説
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerActionMethodItem クラス
DesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerVerb
ComponentDesigner.Verbs プロパティ
DesignerActionList クラス
その他の技術情報
Windows フォームデザイナ コマンドと DesignerAction オブジェクト モデル

DesignerActionMethodItem コンストラクタ

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)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

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

名前空間: System.ComponentModel.Design
アセンブリ: 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
)

パラメータ

actionList

この項目に関連付けられたメソッドを持つ DesignerActionList。

memberName

パネル項目を通じて呼び出す、DesignerActionList から派生したクラスでのメソッド名 (大文字と小文字区別される)。

displayName

この項目のパネル テキスト

category

パネル上の同様の項目をグループ化するために使用する大文字と小文字区別される String

description

ツールヒントステータス バー使用する、この項目の補足テキスト

includeAsDesignerVerb

関連付けられたメソッドも、関連付けられたコンポーネントデザイナ動詞として扱うかどうか指定するフラグ

解説解説
使用例使用例

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;
}
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerActionMethodItem クラス
DesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerVerb
ComponentDesigner.Verbs プロパティ
DesignerActionList クラス
その他の技術情報
Windows フォームデザイナ コマンドと DesignerAction オブジェクト モデル

DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

メソッド名と表示名指定して、DesignerActionMethodItem クラス新しインスタンス初期化します。

名前空間: System.ComponentModel.Design
アセンブリ: 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
)

パラメータ

actionList

この項目に関連付けられたメソッドを持つ DesignerActionList。

memberName

パネル項目を通じて呼び出す、DesignerActionList から派生したクラスでのメソッド名 (大文字と小文字区別される)。

displayName

この項目のパネル テキスト

解説解説

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

.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerActionMethodItem クラス
DesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerVerb
ComponentDesigner.Verbs プロパティ
DesignerActionList クラス
その他の技術情報
Windows フォームデザイナ コマンドと DesignerAction オブジェクト モデル

DesignerActionMethodItem コンストラクタ (DesignerActionList, String, String, Boolean)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

指定したメソッド名と表示名、および項目が他のユーザー インターフェイスコンテキスト表示されるかどうかを示すフラグ使用して、DesignerActionMethodItem クラス新しインスタンス初期化します。

名前空間: System.ComponentModel.Design
アセンブリ: 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
)

パラメータ

actionList

この項目に関連付けられたメソッドを持つ DesignerActionList。

memberName

パネル項目を通じて呼び出す、DesignerActionList から派生したクラスでのメソッド名 (大文字と小文字区別される)。

displayName

この項目のパネル テキスト

includeAsDesignerVerb

関連付けられたメソッドデザイナ動詞として扱うかどうか指定するフラグ

解説解説
.NET Framework のセキュリティ.NET Frameworkセキュリティ
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DesignerActionMethodItem クラス
DesignerActionMethodItem メンバ
System.ComponentModel.Design 名前空間
DesignerVerb
ComponentDesigner.Verbs プロパティ
DesignerActionList クラス
その他の技術情報
Windows フォームデザイナ コマンドと DesignerAction オブジェクト モデル

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 メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DesignerActionMethodItem クラス
System.ComponentModel.Design 名前空間
DesignerActionList クラス
GetSortedActionItems
MemberName

その他の技術情報

Windows フォームデザイナ コマンドと DesignerAction オブジェクト モデル

DesignerActionMethodItem メンバ

DesignerActionList から派生したクラスメソッド関連付けられているスマート タグ パネル項目を表します

DesignerActionMethodItem データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド DesignerActionMethodItem オーバーロードされます。 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 オブジェクト モデル


このページでは「.NET Framework クラス ライブラリ リファレンス」からDesignerActionMethodItemを検索した結果を表示しています。
Weblioに収録されているすべての辞書からDesignerActionMethodItemを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からDesignerActionMethodItem を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「DesignerActionMethodItem」の関連用語

DesignerActionMethodItemのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



DesignerActionMethodItemのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS