ActivityDesigner 클래스

정의

주의

The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*

모든 Activity Designer 구성 요소에 대한 필수 기본 클래스를 제공합니다.

public ref class ActivityDesigner : IDisposable, System::ComponentModel::Design::IDesignerFilter, System::ComponentModel::Design::IRootDesigner, System::Drawing::Design::IToolboxUser, System::Workflow::ComponentModel::Design::IPersistUIState, System::Workflow::ComponentModel::Design::IWorkflowRootDesigner
[System.Workflow.ComponentModel.Design.ActivityDesignerTheme(typeof(System.Workflow.ComponentModel.Design.ActivityDesignerTheme))]
public class ActivityDesigner : IDisposable, System.ComponentModel.Design.IDesignerFilter, System.ComponentModel.Design.IRootDesigner, System.Drawing.Design.IToolboxUser, System.Workflow.ComponentModel.Design.IPersistUIState, System.Workflow.ComponentModel.Design.IWorkflowRootDesigner
[System.Workflow.ComponentModel.Design.ActivityDesignerTheme(typeof(System.Workflow.ComponentModel.Design.ActivityDesignerTheme))]
[System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")]
public class ActivityDesigner : IDisposable, System.ComponentModel.Design.IDesignerFilter, System.ComponentModel.Design.IRootDesigner, System.Drawing.Design.IToolboxUser, System.Workflow.ComponentModel.Design.IPersistUIState, System.Workflow.ComponentModel.Design.IWorkflowRootDesigner
[<System.Workflow.ComponentModel.Design.ActivityDesignerTheme(typeof(System.Workflow.ComponentModel.Design.ActivityDesignerTheme))>]
type ActivityDesigner = class
    interface IDesignerFilter
    interface IToolboxUser
    interface IPersistUIState
    interface IWorkflowRootDesigner
    interface IRootDesigner
    interface IDesigner
    interface IDisposable
[<System.Workflow.ComponentModel.Design.ActivityDesignerTheme(typeof(System.Workflow.ComponentModel.Design.ActivityDesignerTheme))>]
[<System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")>]
type ActivityDesigner = class
    interface IDesignerFilter
    interface IToolboxUser
    interface IPersistUIState
    interface IWorkflowRootDesigner
    interface IRootDesigner
    interface IDesigner
    interface IDisposable
[<System.Workflow.ComponentModel.Design.ActivityDesignerTheme(typeof(System.Workflow.ComponentModel.Design.ActivityDesignerTheme))>]
[<System.Obsolete("The System.Workflow.* types are deprecated.  Instead, please use the new types from System.Activities.*")>]
type ActivityDesigner = class
    interface IDisposable
    interface IDesignerFilter
    interface IDesigner
    interface IToolboxUser
    interface IPersistUIState
    interface IWorkflowRootDesigner
    interface IRootDesigner
Public Class ActivityDesigner
Implements IDesignerFilter, IDisposable, IPersistUIState, IRootDesigner, IToolboxUser, IWorkflowRootDesigner
상속
ActivityDesigner
파생
특성
구현

예제

다음 코드 예제에서는 사용자 지정 활동에서 ActivityDesigner를 완전히 구현하는 방법을 보여 줍니다. 디자이너에는 기본 클래스 ActivityDesigner에서 그리기를 제어하거나 ActivityDesignerPaint 클래스가 활동을 그릴 때 사용하는 다양한 메서드를 사용할 수 있도록 전환되는 플래그가 있습니다.

[ActivityDesignerTheme(typeof(CustomCompositeActivityDesignerTheme))]
public class CustomActivityDesigner : ActivityDesigner
{
    public override bool CanBeParentedTo(CompositeActivityDesigner parentActivityDesigner)
    {
        if (parentActivityDesigner.GetType().ToString() == "System.Workflow.Activities.IfElseBranchDesigner")
            return false;

        return true;
    }

    private ActivityDesignerVerbCollection verbs = null;

    protected override ActivityDesignerVerbCollection Verbs
    {
        get
        {
            if (this.verbs == null)
                CreateActivityVerbs();

            return this.verbs;
        }
    }

    private void CreateActivityVerbs()
    {
        this.verbs = new ActivityDesignerVerbCollection();

        ActivityDesignerVerb addBranchVerb = new ActivityDesignerVerb(this,
            DesignerVerbGroup.View, "Add New Parallel Branch", new EventHandler(OnAddParallelBranch));
        this.verbs.Clear();

        this.verbs.Add(addBranchVerb);
    }

    protected void OnAddParallelBranch(object sender, EventArgs e)
    {
        // Code for adding a new branch to the parallel activity goes here
    }

    protected override Rectangle ImageRectangle
    {
        get
        {
            Rectangle bounds = this.Bounds;
            Size sz = new Size(24, 24);

            Rectangle imageRect = new Rectangle();
            imageRect.X = bounds.Left + ((bounds.Width - sz.Width) / 2);
            imageRect.Y = bounds.Top + 4;
            imageRect.Size = sz;

            return imageRect;
        }
    }

    protected override Rectangle TextRectangle
    {
        get
        {
            return new Rectangle(
                this.Bounds.Left + 2,
                this.ImageRectangle.Bottom,
                this.Bounds.Width - 4,
                this.Bounds.Height - this.ImageRectangle.Height - 1);
        }
    }

    protected override void Initialize(Activity activity)
    {
        base.Initialize(activity);
        Bitmap bmp = Resources.ToolboxImage;
        bmp.MakeTransparent();
        this.Image = bmp;
    }

    readonly static Size BaseSize = new Size(64, 64);
    protected override Size OnLayoutSize(ActivityDesignerLayoutEventArgs e)
    {
        return BaseSize;
    }

    private bool expanded = true;
    private bool useBasePaint = false;

    public bool UseBasePaint
    {
        get { return this.useBasePaint; }
        set { this.useBasePaint = value; }
    }

    public bool Expanded
    {
        get { return this.expanded; }
        set { this.expanded = value; }
    }

    protected override void OnPaint(ActivityDesignerPaintEventArgs e)
    {
        if (this.UseBasePaint == true)
        {
            base.OnPaint(e);
            return;
        }

        DrawCustomActivity(e);
    }

    private void DrawCustomActivity(ActivityDesignerPaintEventArgs e)
    {
        Graphics graphics = e.Graphics;

        CompositeDesignerTheme compositeDesignerTheme = (CompositeDesignerTheme)e.DesignerTheme;

        ActivityDesignerPaint.DrawRoundedRectangle(graphics, compositeDesignerTheme.BorderPen, this.Bounds, compositeDesignerTheme.BorderWidth);

        string text = this.Text;
        Rectangle textRectangle = this.TextRectangle;
        if (!string.IsNullOrEmpty(text) && !textRectangle.IsEmpty)
        {
            ActivityDesignerPaint.DrawText(graphics, compositeDesignerTheme.Font, text, textRectangle, StringAlignment.Center, e.AmbientTheme.TextQuality, compositeDesignerTheme.ForegroundBrush);
        }

        System.Drawing.Image image = this.Image;
        Rectangle imageRectangle = this.ImageRectangle;
        if (image != null && !imageRectangle.IsEmpty)
        {
            ActivityDesignerPaint.DrawImage(graphics, image, imageRectangle, DesignerContentAlignment.Fill);
        }

        ActivityDesignerPaint.DrawExpandButton(graphics,
            new Rectangle(this.Location.X, this.Location.Y, 10, 10),
            this.Expanded,
            compositeDesignerTheme);
    }
}
<ActivityDesignerTheme(GetType(CustomCompositeActivityDesignerTheme))> _
Public Class CustomActivityDesigner
    Inherits ActivityDesigner

   
    Public Overrides Function CanBeParentedTo(ByVal parentActivityDesigner As CompositeActivityDesigner) As Boolean
        If parentActivityDesigner.GetType().ToString() = "System.Workflow.Activities.IfElseBranchDesigner" Then
            Return False
        End If
        Return True
    End Function

    Private verbsValue As ActivityDesignerVerbCollection = Nothing

    Protected Overrides ReadOnly Property Verbs() As ActivityDesignerVerbCollection
        Get
            If verbsValue Is Nothing Then
                CreateActivityVerbs()
            End If
            Return Me.verbsValue

        End Get
    End Property

    Private Sub CreateActivityVerbs()
        Me.verbsValue = New ActivityDesignerVerbCollection()

        Dim addBranchVerb As New ActivityDesignerVerb(Me, DesignerVerbGroup.View, "Add New Parallel Branch", AddressOf OnAddParallelBranch)

        Me.verbsValue.Clear()

        Me.verbsValue.Add(addBranchVerb)
    End Sub

    Protected Sub OnAddParallelBranch(ByVal sender As Object, ByVal e As EventArgs)
        ' Code for adding a new branch to the parallel activity goes here
    End Sub

    Protected Overrides ReadOnly Property ImageRectangle() As Rectangle

        Get
            Dim Bounds As Rectangle = Me.Bounds
            Dim sz As New Size(24, 24)

            Dim imageRect As New Rectangle()
            imageRect.X = Bounds.Left + ((Bounds.Width - sz.Width) / 2)
            imageRect.Y = Bounds.Top + 4
            imageRect.Size = sz

            Return imageRect
        End Get
    End Property

    Protected Overrides ReadOnly Property TextRectangle() As Rectangle
        Get
            Return New Rectangle( _
                Me.Bounds.Left + 2, _
                 Me.ImageRectangle.Bottom, _
                Me.Bounds.Width - 4, _
                Me.Bounds.Height - Me.ImageRectangle.Height - 1)
        End Get
    End Property


    Protected Overrides Sub Initialize(ByVal activity As Activity)

        MyBase.Initialize(activity)
        Dim bmp As Bitmap = Resources.ToolboxImage
        bmp.MakeTransparent()
        Me.Image = bmp
    End Sub

    Shared ReadOnly BaseSize As New Size(64, 64)
    Protected Overrides Function OnLayoutSize(ByVal e As ActivityDesignerLayoutEventArgs) As Size
        Return BaseSize
    End Function

    Private expandedValue As Boolean = True
    Private useBasePaintValue As Boolean = False

    Public Property UseBasePaint() As Boolean
        Get
            Return Me.useBasePaintValue
        End Get

        Set(ByVal value As Boolean)
            Me.useBasePaintValue = value
        End Set
    End Property

    Public Property Expanded() As Boolean
        Get
            Return Me.expandedValue
        End Get
        Set(ByVal value As Boolean)
            Me.expandedValue = value
        End Set
    End Property


    Protected Overrides Sub OnPaint(ByVal e As ActivityDesignerPaintEventArgs)
        If Me.UseBasePaint = True Then
            MyBase.OnPaint(e)
            Return
        End If

        DrawCustomActivity(e)
    End Sub

    Private Sub DrawCustomActivity(ByVal e As ActivityDesignerPaintEventArgs)
        Dim graphics As Graphics = e.Graphics

        Dim compositeDesignerTheme As CompositeDesignerTheme = CType(e.DesignerTheme, CompositeDesignerTheme)

        ActivityDesignerPaint.DrawRoundedRectangle(graphics, compositeDesignerTheme.BorderPen, Me.Bounds, compositeDesignerTheme.BorderWidth)

        Dim text As String = Me.Text
        Dim TextRectangle As Rectangle = Me.TextRectangle
        If Not String.IsNullOrEmpty(text) And Not TextRectangle.IsEmpty Then
            ActivityDesignerPaint.DrawText(graphics, compositeDesignerTheme.Font, text, TextRectangle, StringAlignment.Center, e.AmbientTheme.TextQuality, compositeDesignerTheme.ForegroundBrush)
        End If

        Dim Image As System.Drawing.Image = Me.Image
        Dim ImageRectangle As Rectangle = Me.ImageRectangle
        If Image IsNot Nothing And Not ImageRectangle.IsEmpty Then
            ActivityDesignerPaint.DrawImage(graphics, Image, ImageRectangle, DesignerContentAlignment.Fill)
        End If

        ActivityDesignerPaint.DrawExpandButton(graphics, _
            New Rectangle(Me.Location.X, Me.Location.Y, 10, 10), _
            Me.Expanded, _
            compositeDesignerTheme)
    End Sub
End Class

설명

참고

이 자료에서는 더 이상 사용되지 않는 형식과 네임스페이스에 대해 설명합니다. 자세한 내용은 Deprecated Types in Windows Workflow Foundation 4.5(Windows Workflow Foundation 4.5에서 사용되지 않는 형식)를 참조하세요.

모든 Activity Designer 구성 요소는 ActivityDesigner에서 파생됩니다. ActivityDesigner는 사용자가 디자인 모드에서 시각적으로 활동을 디자인할 수 있는 간단한 디자이너를 제공합니다.

ActivityDesigner는 디자인 화면에 워크플로를 렌더링할 때 활동이 참여할 수 있도록 간단한 메커니즘을 제공합니다.

ActivityDesigner를 사용하여 활동과 연결된 레이아웃 및 그리기를 사용자 지정할 수 있습니다.

ActivityDesigner를 사용하여 활동과 연결된 메타데이터를 확장할 수 있습니다.

생성자

ActivityDesigner()

ActivityDesigner 클래스의 새 인스턴스를 초기화합니다.

속성

AccessibilityObject

액세스 가능성 애플리케이션에서 장애가 있는 사용자를 위해 애플리케이션 UI 조정에 사용하는 AccessibleObject를 가져옵니다.

Activity

디자이너와 연결된 Activity을 가져옵니다.

Bounds

디자이너를 둘러싸는 사각형에 대한 값이 논리적 좌표로 들어 있는 Rectangle을 가져옵니다.

DesignerActions

구성 오류와 연결된 작업의 배열을 가져옵니다.

DesignerTheme

Activity Designer의 현재 디자이너 테마를 가져옵니다.

EnableVisualResizing

활동 디자이너가 자유형 디자이너 내에서 크기를 조정할 수 있는지 여부를 나타내는 값을 가져옵니다.

Glyphs

디자이너를 장식할 문자 모양의 컬렉션을 가져옵니다.

Image

디자이너와 연결된 Image를 가져오거나 설정합니다.

ImageRectangle

디자이너와 연결된 이미지를 둘러싸는 경계의 값을 논리적 좌표로 가져옵니다.

InvokingDesigner

현재 활동 디자이너와 연결된 활동을 호출하는 활동의 디자이너를 가져오거나 설정합니다.

IsLocked

디자이너와 연결된 활동을 수정할 수 있는지 여부를 나타내는 값을 가져옵니다.

IsPrimarySelection

디자이너와 연결된 활동이 기본 선택인지 여부를 나타내는 값을 가져옵니다.

IsRootDesigner

디자이너가 루트 디자이너인지 여부를 나타내는 값을 가져옵니다.

IsSelected

디자이너와 연결된 활동이 선택되었는지 여부를 나타내는 값을 가져옵니다.

IsVisible

디자이너와 연결된 활동이 워크플로에 표시되는지 여부를 나타내는 값을 가져옵니다.

Location

디자이너의 위치를 논리적 좌표로 가져오거나 설정합니다.

MessageFilters

활동 디자이너에 연결된 메시지 필터의 읽기 전용 컬렉션을 가져옵니다.

MinimumSize

Activity Designer의 최소 크기를 가져옵니다.

ParentDesigner

기존 디자이너의 부모 디자이너를 가져옵니다.

ParentView

현재 Activity Designer가 들어 있는 워크플로 뷰를 가져옵니다.

ShowSmartTag

활동이 스마트 태그를 표시해야 하는지 여부를 나타내는 값을 가져옵니다.

Size

ActivityDesigner의 크기를 가져오거나 설정합니다.

SmartTagRectangle

스마트 태그가 표시되어야 하는 사각형을 가져옵니다.

SmartTagVerbs

Activity Designer의 스마트 태그와 연결할 디자이너 작업의 읽기 전용 컬렉션을 가져옵니다.

Text

디자이너와 연결할 텍스트를 가져오거나 설정합니다.

TextRectangle

텍스트 사각형의 값을 논리적 좌표로 가져옵니다.

Verbs

디자이너와 연결할 동사 컬렉션을 가져옵니다.

메서드

CanBeParentedTo(CompositeActivityDesigner)

CompositeActivity를 디자이너와 연결된 활동의 부모로 설정할 수 있는지 여부를 나타내는 값을 반환합니다.

CanConnect(ConnectionPoint, ConnectionPoint)

현재 디자이너의 지정된 연결 지점 및 대상 Activity Designer의 지정된 연결 지점 사이 연결을 만들 수 있는지 여부를 나타내는 값을 반환합니다.

CreateView(ViewTechnology)

지정된 ViewTechnology를 사용하여 현재 활동 디자이너의 워크플로 뷰를 만듭니다.

Dispose()

ActivityDesigner에서 사용하는 관리되지 않는 리소스를 해제하고, 관리되는 리소스를 선택적으로 해제할 수 있습니다.

Dispose(Boolean)

ActivityDesigner 클래스에서 사용하는 리소스를 해제합니다.

DoDefaultAction()

활동 디자이너와 연결된 기본 UI 동작을 수행합니다.

EnsureVisible()

지정된 디자이너가 표시되도록 화면의 표시 영역을 이동합니다.

Equals(Object)

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

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

파생된 클래스에서 재정의되는 경우 개체는 모든 리소스를 명확하게 정리할 수 있습니다.

GetConnectionPoints(DesignerEdges)

지정된 DesignerEdges에 있는 활동 디자이너의 연결 지점에 대한 읽기 전용 컬렉션을 반환합니다.

GetConnections(DesignerEdges)

디자이너가 연결을 위해 사용하는 지점의 읽기 전용 컬렉션을 반환합니다.

GetHashCode()

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

(다음에서 상속됨 Object)
GetPreviewImage(Graphics)

지정된 Graphics에서 활동 디자이너의 이미지를 가져옵니다.

GetRootDesigner(IServiceProvider)

워크플로의 디자인 화면과 연결된 디자이너를 반환합니다.

GetService(Type)

디자이너와 연결된 활동의 디자인 모드 사이트에서 지정된 서비스 종류를 검색합니다.

GetType()

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

(다음에서 상속됨 Object)
HitTest(Point)

화면의 지정된 지점에 있는 ActivityDesigner에 대한 정보를 가져옵니다.

Initialize(Activity)

연결된 Activity을 사용하여 디자이너를 초기화합니다.

Invalidate()

디자이너를 무효화합니다.

Invalidate(Rectangle)

디자이너의 지정된 사각형을 무효화합니다.

IsCommentedActivity(Activity)

현재 디자이너 활동이 주석 처리되었거나 주석 처리된 활동 내에 있는지 여부를 나타내는 값을 반환합니다.

IsSupportedActivityType(Type)

활동 디자이너가 루트 디자이너인 경우 지정된 활동 형식이 지원되는지 여부를 나타내는 값을 반환합니다.

LoadViewState(BinaryReader)

이진 스트림에서 디자이너의 뷰 상태를 로드합니다.

MemberwiseClone()

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

(다음에서 상속됨 Object)
OnActivityChanged(ActivityChangedEventArgs)

연결된 활동이 변경될 경우 ActivityDesigner에게 알립니다.

OnBeginResizing(ActivityDesignerResizeEventArgs)

디자이너가 ActivityDesigner 안에 있을 때 Activity Designer의 크기를 시각적으로 조정하기 시작하면 이를 FreeformActivityDesigner에 알립니다.

OnConnected(ConnectionPoint, ConnectionPoint)

두 개의 연결 지점 간을 연결할 때 ActivityDesigner에게 알립니다.

OnDragDrop(ActivityDragEventArgs)

끌어서 놓기 작업이 디자이너 경계 내부에서 완료될 때 발생합니다.

OnDragEnter(ActivityDragEventArgs)

끌어서 놓기 작업을 진행 중이고 포인터가 디자이너 경계 내부로 들어갈 때 발생합니다.

OnDragLeave()

끌어서 놓기 작업을 진행 중이고 포인터가 디자이너 경계를 벗어날 때 발생합니다.

OnDragOver(ActivityDragEventArgs)

끌어서 놓기 작업을 진행 중이고 포인터가 디자이너 경계 내에 있을 때 발생합니다.

OnEndResizing()

디자이너가 ActivityDesigner 내에 있을 때 Activity Designer의 크기 조정을 시각적으로 완료하면 FreeformActivityDesigner에게 알립니다.

OnExecuteDesignerAction(DesignerAction)

사용자가 디자이너와 연결된 구성 오류를 클릭할 경우 ActivityDesigner에게 알립니다.

OnGiveFeedback(GiveFeedbackEventArgs)

끌기 작업을 수행할 때 사용자에게 제공되는 피드백의 시각 신호를 업데이트합니다.

OnKeyDown(KeyEventArgs)

디자이너에 키보드 포커스가 있을 때 키를 누르면 발생합니다.

OnKeyUp(KeyEventArgs)

디자이너에 키보드 포커스가 있을 때 키를 놓으면 발생합니다.

OnLayoutPosition(ActivityDesignerLayoutEventArgs)

사용자가 시각 신호 또는 자식 Activity Designer의 위치를 바꿀 때 ActivityDesigner에게 알립니다.

OnLayoutSize(ActivityDesignerLayoutEventArgs)

ActivityDesigner에 있는 시각 신호나 자식 Activity Designer의 크기를 반환합니다.

OnMouseCaptureChanged()

마우스 캡처가 변경될 때 발생합니다.

OnMouseDoubleClick(MouseEventArgs)

디자이너에서 마우스 단추를 여러 번 클릭하면 발생합니다.

OnMouseDown(MouseEventArgs)

포인터가 디자이너 경계 내에 있을 때 마우스 단추를 누르면 발생합니다.

OnMouseDragBegin(Point, MouseEventArgs)

디자이너에서 마우스를 끌기 시작할 때 발생합니다.

OnMouseDragEnd()

디자이너에서 마우스 끌기를 중지할 때 발생합니다.

OnMouseDragMove(MouseEventArgs)

디자이너 위에서 마우스를 이동해 포인터를 끌 때마다 발생합니다.

OnMouseEnter(MouseEventArgs)

마우스가 처음으로 디자이너 경계 내로 들어올 때 발생합니다.

OnMouseHover(MouseEventArgs)

포인터가 디자이너 경계 내에 있을 때 발생합니다.

OnMouseLeave()

포인터가 디자이너 경계를 벗어날 때 발생합니다.

OnMouseMove(MouseEventArgs)

포인터가 디자이너 경계 내에서 이동할 때 발생합니다.

OnMouseUp(MouseEventArgs)

포인터가 디자이너 경계 내에 있을 때 마우스 단추를 놓으면 발생합니다.

OnPaint(ActivityDesignerPaintEventArgs)

디자인 타임에 활동의 시각적 표시를 그립니다.

OnProcessMessage(Message)

디자이너에서 원시 Win32 메시지를 처리할 수 있습니다.

OnQueryContinueDrag(QueryContinueDragEventArgs)

끌기 작업을 계속해야 할지 여부를 제어합니다.

OnResizing(ActivityDesignerResizeEventArgs)

사용자가 디자인 타임에서 시각적으로 크기 조정을 하는 경우 ActivityDesigner에게 알립니다. Activity Designer가 FreeformActivityDesigner의 자식인 경우에만 메서드가 호출됩니다.

OnScroll(ScrollBar, Int32)

사용자가 스크롤 위치를 변경하면 ActivityDesigner에게 알립니다.

OnShowSmartTagVerbs(Point)

지정된 지점에서 스마트 태그와 연결된 디자이너 동사를 표시합니다.

OnSmartTagVisibilityChanged(Boolean)

스마트 태그를 표시할지 숨길지를 ActivityDesigner에 알립니다.

OnThemeChange(ActivityDesignerTheme)

연결된 테마가 변경되었음을 디자이너에게 알립니다.

PerformLayout()

디자이너의 레이아웃을 업데이트합니다.

PointToLogical(Point)

지점을 화면 좌표계에서 Activity Designer 좌표계로 변형합니다.

PointToScreen(Point)

지점을 Activity Designer 좌표계에서 화면 좌표계로 변형합니다.

PostFilterAttributes(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 특성 집합에서 항목을 변경하거나 제거할 수 있습니다.

PostFilterEvents(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 이벤트 집합에서 항목을 변경하거나 제거할 수 있습니다.

PostFilterProperties(IDictionary)

파생 클래스에서 재정의되는 경우 디자이너가 TypeDescriptor를 통해 노출된 속성 집합에서 항목을 변경하거나 제거할 수 있습니다.

PreFilterAttributes(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 특성 집합에 항목을 추가할 수 있습니다.

PreFilterEvents(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 이벤트 집합에 항목을 추가할 수 있습니다.

PreFilterProperties(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 속성 집합에 항목을 추가할 수 있습니다.

RectangleToLogical(Rectangle)

사각형을 화면 좌표계에서 Activity Designer 좌표계로 변형합니다.

RectangleToScreen(Rectangle)

사각형을 Activity Designer 좌표계에서 화면 좌표계로 변형합니다.

RefreshDesignerActions()

디자이너와 연결된 구성 오류를 새로 고칩니다.

RefreshDesignerVerbs()

상태 처리기를 호출하여 디자이너와 연결된 Activity Designer 동사를 새로 고칩니다.

SaveViewState(BinaryWriter)

디자이너의 뷰 상태를 이진 스트림으로 저장합니다.

ShowInfoTip(String)

지정된 정보 팁을 표시합니다.

ShowInfoTip(String, String)

지정된 제목 및 텍스트와 함께 ActivityDesigner의 정보 팁을 표시합니다.

ShowInPlaceTip(String, Rectangle)

지정된 사각형 위치에 지정된 도구 설명을 표시합니다.

ToString()

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

(다음에서 상속됨 Object)

명시적 인터페이스 구현

IDesigner.Component

Activity Designer가 연결된 기본 구성 요소를 가져옵니다.

IDesigner.DoDefaultAction()

디자이너와 연결된 기본 동작을 수행합니다.

IDesigner.Initialize(IComponent)

연결된 활동을 사용하여 디자이너를 초기화합니다.

IDesigner.Verbs

Activity Designer와 연결된 디자인 타임 동사를 가져옵니다.

IDesignerFilter.PostFilterAttributes(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 특성 집합에서 항목을 변경하거나 제거할 수 있습니다.

IDesignerFilter.PostFilterEvents(IDictionary)

파생 클래스에서 재정의되는 경우 디자이너가 TypeDescriptor를 통해 노출된 이벤트 집합에서 항목을 변경하거나 제거할 수 있습니다.

IDesignerFilter.PostFilterProperties(IDictionary)

파생 클래스에서 재정의되는 경우 디자이너가 TypeDescriptor를 통해 노출된 속성 집합에서 항목을 변경하거나 제거할 수 있습니다.

IDesignerFilter.PreFilterAttributes(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 특성 집합에 항목을 추가할 수 있습니다.

IDesignerFilter.PreFilterEvents(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 이벤트 집합에 항목을 추가할 수 있습니다.

IDesignerFilter.PreFilterProperties(IDictionary)

파생 클래스에서 재정의할 때 디자이너가 TypeDescriptor를 통해 노출된 속성 집합에 항목을 추가할 수 있습니다.

IPersistUIState.LoadViewState(BinaryReader)

이진 스트림에서 뷰 상태를 복원합니다.

IPersistUIState.SaveViewState(BinaryWriter)

뷰 상태를 이진 스트림으로 저장합니다.

IRootDesigner.GetView(ViewTechnology)

지정한 뷰 기술에 대한 뷰 개체를 반환합니다.

IRootDesigner.SupportedTechnologies

Activity Designer가 표시를 위해 지원할 수 있는 기술의 배열을 가져옵니다.

IToolboxUser.GetToolSupported(ToolboxItem)

현재 Activity Designer에서 지정된 도구 상자 항목을 지원하는지 여부를 확인합니다.

IToolboxUser.ToolPicked(ToolboxItem)

지정된 도구 상자 항목을 선택합니다.

IWorkflowRootDesigner.InvokingDesigner

Activity Designer의 초기화를 요청한 CompositeActivityDesigner를 가져오거나 설정합니다.

IWorkflowRootDesigner.IsSupportedActivityType(Type)

지정한 형식이 현재 ActivityDesigner에서 지원되는지 여부를 나타내는 값을 반환합니다.

IWorkflowRootDesigner.MessageFilters

Activity Designer와 연결된 메시지 필터를 가져옵니다.

IWorkflowRootDesigner.SupportsLayoutPersistence

실제 워크플로 루트 디자이너가 레이아웃 지속성을 지원하는지 여부를 나타내는 값을 가져옵니다.

적용 대상