DesignerActionPropertyItem 클래스

정의

DesignerActionList에서 파생된 클래스의 속성과 연결된 패널 항목을 나타냅니다. 이 클래스는 상속될 수 없습니다.

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

예제

다음 코드 예제에는 컬렉션을 만드는 방법을 보여 줍니다 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

설명

DesignerActionPropertyItem 클래스 스마트 태그 패널의 개별 항목을 나타냅니다. 각 항목에서 파생 된 클래스에서 속성을 사용 하 여 일반적으로 연결 되는 DesignerActionList 클래스 및 구성 요소 작성자가 제공 합니다. 에 저장 된 연결 속성의 이름을 통해 유지 관리는 MemberName 속성입니다.

개별 패널 항목은 연결에 대 한 호출에서 패널을 형성 하는 GetSortedActionItems 메서드는 DesignerActionList 클래스.

연결된 된 속성의 값을 표시 하려면 해당 속성 있어야를 get 접근자 메서드를 편집할 수 있도록 속성이 가져야는 set 접근자 메서드. 패널을 직접 편집할 수 있도록 사용자가 속성 항목으로 연결된 된 속성의 데이터 형식에는 지원 형식 정보에 따라 달라 집니다. 다음 표에서 가능한 구성표를 보여 줍니다.

속성 형식 정보 속성 항목이 사용자 인터페이스 (UI)를 편집 합니다.
에 연결 된 형식 편집기 (UITypeEditor) 기본 속성을 사용 하 여 연결 된 유형 편집기는 속성의 값을 편집 하는 것에 대 한 표시 됩니다.
알려진된 형식에는 연결 된 형식 변환기가 (TypeConverter) 알려진된 형식에 대 한 유형 편집기는 속성의 값을 편집 하는 것에 대 한 표시 됩니다. 예를 들어에 형식 변환기 String 표시할 수 있습니다는 TextBox합니다.
부울 값 항목은 확인란 같은 이진 UI를 사용 하 여 표시 됩니다.
해당 항목 없음. 항목이 데이터 형식을 사용 하 여 편집할 수 없는 텍스트 문자열로 표시 되 ToString 메서드.

와 같은 System.Boolean모든 기본 형식 및 와 같은 System.String일반적인 .NET Framework 데이터 형식은 표준 형식 변환기 및 편집기를 제공합니다. 형식 변환기에 대 한 자세한 내용은 참조 하세요. 방법: 형식 변환기를 구현 하거나 일반화 된 형식 변환합니다. 형식 편집기에 대 한 자세한 내용은 참조 하세요. 방법: UI 형식 편집기 구현합니다.

생성자

DesignerActionPropertyItem(String, String)

지정된 속성 이름과 표시 이름을 사용하여 DesignerActionPropertyItem 클래스의 새 인스턴스를 초기화합니다.

DesignerActionPropertyItem(String, String, String)

지정된 속성 이름, 범주 이름 및 표시 텍스트를 사용하여 DesignerActionPropertyItem 클래스의 새 인스턴스를 초기화합니다.

DesignerActionPropertyItem(String, String, String, String)

지정된 속성 이름, 범주 이름, 표시 텍스트 및 설명 텍스트를 사용하여 DesignerActionPropertyItem 클래스의 새 인스턴스를 초기화합니다.

속성

AllowAssociate

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

(다음에서 상속됨 DesignerActionItem)
Category

항목에 대한 그룹 이름을 가져옵니다.

(다음에서 상속됨 DesignerActionItem)
Description

항목에 대한 추가 텍스트를 가져옵니다.

(다음에서 상속됨 DesignerActionItem)
DisplayName

이 항목에 대한 텍스트를 가져옵니다.

(다음에서 상속됨 DesignerActionItem)
MemberName

이 항목이 연결된 속성의 이름을 가져옵니다.

Properties

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

(다음에서 상속됨 DesignerActionItem)
RelatedComponent

현재 패널에 항목을 제공하는 구성 요소를 가져오거나 설정합니다.

ShowInSourceView

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

(다음에서 상속됨 DesignerActionItem)

메서드

Equals(Object)

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

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

기본 해시 함수로 작동합니다.

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

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

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

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

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

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

(다음에서 상속됨 Object)

적용 대상

추가 정보