ActivityDesigner 类

定义

注意

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

为所有活动设计器组件提供强制的基类。

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

注解

注意

本材料讨论的类型和命名空间已废弃不用。 有关详细信息,请参阅 Windows Workflow Foundation 4.5 中弃用的类型

所有活动设计器组件都是从 ActivityDesigner 派生的。 ActivityDesigner 提供了一个简单设计器,使用户可以在设计模式下直观地设计活动。

ActivityDesigner 为活动提供了一个简单机制,使它们可以参与在设计图面上呈现工作流的操作。

ActivityDesigner 使用户可以自定义与活动关联的布局和绘制。

ActivityDesigner 使用户可以扩展与活动关联的元数据。

构造函数

ActivityDesigner()
已过时.

初始化 ActivityDesigner 类的新实例。

属性

AccessibilityObject
已过时.

获取一个 AccessibleObject,辅助功能应用程序使用该对象为残障用户调整应用程序 UI。

Activity
已过时.

获取与设计器关联的 Activity

Bounds
已过时.

获取一个 Rectangle,其中包含环绕设计器的矩形的值(以逻辑坐标表示)。

DesignerActions
已过时.

获取与配置错误关联的操作的数组。

DesignerTheme
已过时.

获取活动设计器的当前设计器主题。

EnableVisualResizing
已过时.

获取一个值,该值指示能否在任意形式的设计器中调整活动设计器的大小。

Glyphs
已过时.

获取用于修饰设计器的标志符号的集合。

Image
已过时.

获取或设置与设计器关联的 Image

ImageRectangle
已过时.

获取与设计器关联的图像的环绕边界值(以逻辑坐标表示)。

InvokingDesigner
已过时.

获取或设置调用与当前活动设计器关联的活动的活动设计器。

IsLocked
已过时.

获取一个值,该值指示能否修改与设计器关联的活动。

IsPrimarySelection
已过时.

获取一个值,该值指示与设计器关联的活动是否为主选择。

IsRootDesigner
已过时.

获取一个值,该值指示设计器是否为根设计器。

IsSelected
已过时.

获取一个值,该值指示是否选择了与设计器关联的活动。

IsVisible
已过时.

获取一个值,该值指示与设计器关联的活动在工作流上是否可见。

Location
已过时.

获取或设置设计器的位置(以逻辑坐标表示)。

MessageFilters
已过时.

获取与活动设计器关联的消息筛选器的只读集合。

MinimumSize
已过时.

获取活动设计器的最小大小。

ParentDesigner
已过时.

获取现有设计器的父设计器。

ParentView
已过时.

获取包含当前活动设计器的工作流视图。

ShowSmartTag
已过时.

获取一个值,该值指示活动是否应显示智能标记。

Size
已过时.

获取或设置 ActivityDesigner 的大小。

SmartTagRectangle
已过时.

获取应在其中显示智能标记的矩形。

SmartTagVerbs
已过时.

获取要与活动设计器上的智能标记关联的设计器操作的只读集合。

Text
已过时.

获取或设置与设计器关联的文本。

TextRectangle
已过时.

获取文本矩形的值(以逻辑坐标表示)。

Verbs
已过时.

获取与设计器关联的谓词的集合。

方法

CanBeParentedTo(CompositeActivityDesigner)
已过时.

返回一个值,该值指示 CompositeActivity 能否设置与设计器关联的活动的父级。

CanConnect(ConnectionPoint, ConnectionPoint)
已过时.

返回一个值,该值指示能否在当前活动设计器上的指定连接点与目标活动设计器上的指定连接点之间创建连接。

CreateView(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 中的情况下用户开始直观地调整活动设计器的大小时,向 FreeformActivityDesigner 发出通知。

OnConnected(ConnectionPoint, ConnectionPoint)
已过时.

当在两个连接点之间建立连接时,向 ActivityDesigner 发出通知。

OnDragDrop(ActivityDragEventArgs)
已过时.

在设计器边界内完成拖放操作时发生。

OnDragEnter(ActivityDragEventArgs)
已过时.

当正在执行拖放操作且指针进入设计器边界时发生。

OnDragLeave()
已过时.

当正在执行拖放操作且指针移出设计器边界时发生。

OnDragOver(ActivityDragEventArgs)
已过时.

当正在执行拖放操作且指针位于设计器边界内时发生。

OnEndResizing()
已过时.

在设计器位于 ActivityDesigner 中的情况下用户完成直观地调整活动设计器的大小时,向 FreeformActivityDesigner 发出通知。

OnExecuteDesignerAction(DesignerAction)
已过时.

当用户单击与设计器关联的配置错误时,向 ActivityDesigner 发出通知。

OnGiveFeedback(GiveFeedbackEventArgs)
已过时.

更新执行拖动操作时提供给用户的反馈的视觉提示。

OnKeyDown(KeyEventArgs)
已过时.

在设计器有键盘焦点的情况下按下键时发生。

OnKeyUp(KeyEventArgs)
已过时.

在设计器有键盘焦点的情况下释放键时发生。

OnLayoutPosition(ActivityDesignerLayoutEventArgs)
已过时.

当用户重新定位其视觉提示或子活动设计器时,向ActivityDesigner发出通知。

OnLayoutSize(ActivityDesignerLayoutEventArgs)
已过时.

返回 ActivityDesigner 上的视觉提示或子活动设计器的大小。

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 发出通知。 仅当活动设计器是 FreeformActivityDesigner 的子级时,才会调用此方法。

OnScroll(ScrollBar, Int32)
已过时.

在用户更改滚动位置时,向 ActivityDesigner 发出通知。

OnShowSmartTagVerbs(Point)
已过时.

显示与指定点的智能标记关联的设计器谓词。

OnSmartTagVisibilityChanged(Boolean)
已过时.

ActivityDesigner通知应该显示还是隐藏智能标记。

OnThemeChange(ActivityDesignerTheme)
已过时.

向设计器通知关联的主题已发生更改。

PerformLayout()
已过时.

更新设计器的布局。

PointToLogical(Point)
已过时.

将点从屏幕坐标系转换为活动设计器坐标系。

PointToScreen(Point)
已过时.

将点从活动设计器坐标系转换为屏幕坐标系。

PostFilterAttributes(IDictionary)
已过时.

当在派生类中重写时,允许设计器更改或移除它通过 TypeDescriptor 公开的特性集中的项。

PostFilterEvents(IDictionary)
已过时.

当在派生类中重写时,允许设计器更改或移除它通过 TypeDescriptor 公开的事件集中的项。

PostFilterProperties(IDictionary)
已过时.

当在派生类中重写时,允许设计器更改或移除它通过 TypeDescriptor 公开的属性集中的项。

PreFilterAttributes(IDictionary)
已过时.

当在派生类中重写时,允许设计器向它通过 TypeDescriptor 公开的特性集中添加项。

PreFilterEvents(IDictionary)
已过时.

当在派生类中重写时,允许设计器向它通过 TypeDescriptor 公开的事件集中添加项。

PreFilterProperties(IDictionary)
已过时.

当在派生类中重写时,允许设计器向它通过 TypeDescriptor 公开的属性集中添加项。

RectangleToLogical(Rectangle)
已过时.

将矩形从屏幕坐标系转换为活动设计器坐标系。

RectangleToScreen(Rectangle)
已过时.

将矩形从活动设计器坐标系转换为屏幕坐标系。

RefreshDesignerActions()
已过时.

刷新与设计器关联的配置错误。

RefreshDesignerVerbs()
已过时.

通过调用状态处理程序,刷新与设计器关联的活动设计器谓词。

SaveViewState(BinaryWriter)
已过时.

将设计器的视图状态存储到二进制流中。

ShowInfoTip(String)
已过时.

显示指定的信息提示。

ShowInfoTip(String, String)
已过时.

使用指定的标题和文本显示 ActivityDesigner 的信息提示。

ShowInPlaceTip(String, Rectangle)
已过时.

在指定的矩形位置显示指定的工具提示。

ToString()
已过时.

返回表示当前对象的字符串。

(继承自 Object)

显式接口实现

IDesigner.Component
已过时.

获取与活动设计器关联的基组件。

IDesigner.DoDefaultAction()
已过时.

执行与设计器关联的默认操作。

IDesigner.Initialize(IComponent)
已过时.

使用关联的活动初始化设计器。

IDesigner.Verbs
已过时.

获取与活动设计器关联的设计时谓词。

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
已过时.

获取活动设计器可为其显示提供支持的技术集。

IToolboxUser.GetToolSupported(ToolboxItem)
已过时.

确定当前活动设计器是否支持指定的工具箱项。

IToolboxUser.ToolPicked(ToolboxItem)
已过时.

选择指定的工具箱项。

IWorkflowRootDesigner.InvokingDesigner
已过时.

获取或设置请求要初始化的活动设计器的 CompositeActivityDesigner

IWorkflowRootDesigner.IsSupportedActivityType(Type)
已过时.

返回一个值,该值指示当前 ActivityDesigner 是否支持指定的类型。

IWorkflowRootDesigner.MessageFilters
已过时.

获取与活动设计器关联的任何消息筛选器。

IWorkflowRootDesigner.SupportsLayoutPersistence
已过时.

获取一个值,该值指示实际的工作流根设计器是否支持布局持久性。

适用于