自訂複合設計工具 - 工作流程項目展示器
WorkflowItemPresenter 是 WF 設計工具程式設計模型中的關鍵類型,可允許建立可以放置任意活動的「置放區」。 這個範例示範如何建置會呈現這類「置放區」的活動設計工具。
建立具有 WorkflowItemPresenter 的自訂活動設計工具。
使用中繼資料存放區登錄自訂設計工具。
以宣告和強制方式設計重新裝載之工具箱的程式。
範例詳細資料
這個範例的程式碼會示範:
針對
SimpleNativeActivity
類別建置自訂活動設計工具。建立具有 WorkflowItemPresenter 的自訂活動設計工具
<sap:ActivityDesigner x:Class="Microsoft.Samples.UsingWorkflowItemPresenter.SimpleNativeDesigner"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://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>
請注意繫結至 ModelItem.Body
的 WPF 資料繫結用法。 ModelItem
是 ActivityDesigner 上的屬性,其會參考設計工具的目標基礎物件,在這個範例中為 SimpleNativeActivity。
設定、建置及執行範例
在 Visual Studio 中開啟解決方案 。
按 F5 即可編譯和執行應用程式。