自定义复合设计器 — 工作流项演示器
本主题适用于 Windows Workflow Foundation 4。
WorkflowItemPresenter 是 WF 设计器编程模型中的一个重要类型,通过该类型可以创建可在其中放置任意活动的“放置区”。此示例演示如何生成呈现这样一个“放置区”的活动设计器。
此示例演示:
演示
使用 WorkflowItemPresenter 创建自定义活动设计器。
使用元数据存储区注册自定义设计器。
以声明方式和命令方式编程重新承载的工具箱。
示例详细信息
此示例的代码演示:
针对
SimpleNativeActivity
类生成自定义活动设计器。使用 WorkflowItemPresenter 创建自定义活动设计器。
<sap:ActivityDesigner x:Class="Microsoft.Samples.UsingWorkflowItemPresenter.SimpleNativeDesigner"
xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sap="clr-namespace:System.Activities.Presentation;assembly=System.Activities.Presentation"
xmlns:sapv="clr-namespace:System.Activities.Presentation.View;assembly=System.Activities.Presentation">
<sap:ActivityDesigner.Resources>
<DataTemplate x:Key="Collapsed">
<StackPanel>
<TextBlock>This is the collapsed view</TextBlock>
</StackPanel>
</DataTemplate>
<DataTemplate x:Key="Expanded">
<StackPanel>
<TextBlock>Custom Text</TextBlock>
<sap:WorkflowItemPresenter Item="{Binding Path=ModelItem.Body, Mode=TwoWay}"
HintText="Please drop an activity here" />
</StackPanel>
</DataTemplate>
<Style x:Key="ExpandOrCollapsedStyle" TargetType="{x:Type ContentPresenter}">
<Setter Property="ContentTemplate" Value="{DynamicResource Collapsed}"/>
<Style.Triggers>
<DataTrigger Binding="{Binding Path=ShowExpanded}" Value="true">
<Setter Property="ContentTemplate" Value="{DynamicResource Expanded}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</sap:ActivityDesigner.Resources>
<Grid>
<ContentPresenter Style="{DynamicResource ExpandOrCollapsedStyle}" Content="{Binding}" />
</Grid>
</sap:ActivityDesigner>
请注意,使用 WPF 数据绑定来绑定到 ModelItem.Body
。ModelItem
是 WorkflowElementDesigner 上引用设计器所用于的基础对象的属性,在此例中为**“SimpleNativeActivity”**。
设置、生成和运行示例
在 Visual Studio 2010 中打开解决方案。
按 F5 编译并运行应用程序。
注意: |
---|
您的计算机上可能已安装这些示例。在继续操作之前,请先检查以下(默认)目录:
<安装驱动器>:\WF_WCF_Samples
如果此目录不存在,请访问针对 .NET Framework 4 的 Windows Communication Foundation (WCF) 和 Windows Workflow Foundation (WF) 示例(可能为英文网页),下载所有 Windows Communication Foundation (WCF) 和 WF 示例。此示例位于以下目录:
<安装驱动器>:\WF_WCF_Samples\WF\Basic\CustomActivities\CustomActivityDesigners\WorkflowItemPresenter
|