다음을 통해 공유


DesignerActionMethodItem 클래스

정의

에서 파생 DesignerActionList된 클래스의 메서드와 연결된 스마트 태그 패널 항목을 나타냅니다.

public ref class DesignerActionMethodItem : System::ComponentModel::Design::DesignerActionItem
public class DesignerActionMethodItem : System.ComponentModel.Design.DesignerActionItem
type DesignerActionMethodItem = class
    inherit DesignerActionItem
Public Class DesignerActionMethodItem
Inherits DesignerActionItem
상속
DesignerActionMethodItem

예제

다음 코드 예제에서는 개체 컬렉션을 DesignerActionItem 만드는 방법을 보여 줍니다.

스마트 태그를 구현하는 전체 예제는 방법: Windows Forms 구성 요소에 스마트 태그 첨부를 참조하세요.

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;
}
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

설명

클래스는 DesignerActionMethodItem 스마트 태그 패널의 개별 항목을 나타냅니다. 이 형식의 항목은 파생 DesignerActionList클래스에서 프로그래머 제공 메서드를 호출하는 하이퍼링크와 같은 활성 사용자 인터페이스 요소로 표시됩니다. 항목과 메서드 간의 연결은 속성 값을 MemberName 통해 유지 관리됩니다. 이 항목이 호출하는 메서드는 매개 변수를 사용하거나 값을 반환하지 않아야 합니다.

개별 패널 항목은 클래스의 DesignerActionList 메서드를 호출하여 패널을 형성하기 위해 GetSortedActionItems 함께 연결됩니다.

생성자

Name Description
DesignerActionMethodItem(DesignerActionList, String, String, Boolean)

지정된 메서드 및 표시 이름 및 항목이 다른 사용자 인터페이스 컨텍스트에 표시되어야 하는지 여부를 나타내는 플래그를 사용하여 클래스의 새 인스턴스 DesignerActionMethodItem 를 초기화합니다.

DesignerActionMethodItem(DesignerActionList, String, String, String, Boolean)

지정된 메서드, 표시 및 범주 이름 및 항목이 다른 사용자 인터페이스 컨텍스트에 표시되어야 하는지 여부를 나타내는 플래그를 사용하여 클래스의 새 인스턴스 DesignerActionMethodItem 를 초기화합니다.

DesignerActionMethodItem(DesignerActionList, String, String, String, String, Boolean)

지정된 메서드 및 범주 이름, 표시 및 설명 텍스트 및 항목이 다른 사용자 인터페이스 컨텍스트에 표시되어야 하는지 여부를 나타내는 플래그를 사용하여 클래스의 새 인스턴스 DesignerActionMethodItem 를 초기화합니다.

DesignerActionMethodItem(DesignerActionList, String, String, String, String)

지정된 메서드 및 범주 이름과 표시 및 설명 텍스트를 사용하여 클래스의 DesignerActionMethodItem 새 인스턴스를 초기화합니다.

DesignerActionMethodItem(DesignerActionList, String, String, String)

지정된 메서드, 표시 및 범주 이름을 사용하여 클래스의 DesignerActionMethodItem 새 인스턴스를 초기화합니다.

DesignerActionMethodItem(DesignerActionList, String, String)

지정된 메서드와 표시 이름을 사용하여 클래스의 DesignerActionMethodItem 새 인스턴스를 초기화합니다.

속성

Name Description
AllowAssociate

속성 값이 같은 Category 항목 그룹에 이 항목을 배치할 수 있는지 여부를 나타내는 값을 가져오거나 설정합니다.

(다음에서 상속됨 DesignerActionItem)
Category

항목의 그룹 이름을 가져옵니다.

(다음에서 상속됨 DesignerActionItem)
Description

항목의 추가 텍스트를 가져옵니다.

(다음에서 상속됨 DesignerActionItem)
DisplayName

이 항목의 텍스트를 가져옵니다.

(다음에서 상속됨 DesignerActionItem)
IncludeAsDesignerVerb

다른 사용자 인터페이스 컨텍스트에 DesignerActionMethodItem 표시되어야 임을 나타내는 값을 가져옵니다.

MemberName

연결된 DesignerActionMethodItem 메서드의 이름을 가져옵니다.

Properties

프로그래머 정의 키/값 쌍을 저장하는 데 사용할 수 있는 컬렉션에 대한 참조를 가져옵니다.

(다음에서 상속됨 DesignerActionItem)
RelatedComponent

개체를 현재 패널에 기여하는 DesignerActionMethodItem 구성 요소를 가져오거나 설정합니다.

ShowInSourceView

이 항목이 소스 코드 뷰에 표시되는지 여부를 나타내는 값을 가져오거나 설정합니다.

(다음에서 상속됨 DesignerActionItem)

메서드

Name Description
Equals(Object)

지정된 개체가 현재 개체와 같은지 여부를 확인합니다.

(다음에서 상속됨 Object)
GetHashCode()

기본 해시 함수로 사용됩니다.

(다음에서 상속됨 Object)
GetType()

현재 인스턴스의 Type 가져옵니다.

(다음에서 상속됨 Object)
Invoke()

에 연결된 DesignerActionMethodItem메서드를 프로그래밍 방식으로 실행합니다.

MemberwiseClone()

현재 Object단순 복사본을 만듭니다.

(다음에서 상속됨 Object)
ToString()

현재 개체를 나타내는 문자열을 반환합니다.

(다음에서 상속됨 Object)

적용 대상

추가 정보