Hosting workflow in WPF
In this task, we will create a workflow running in a WPF application.
How to do it...
Create a WPF project:
Create a WPF project and name it
HostingWorkflowInWPF
.Create a workflow:
Add a workflow to the project named
AdditionWorkflow.xaml
and author a workflow like this:Create a WPF window:
Open the default created WPF file
MainWindow.xaml
. Alter its contents to:<Window x:Class="HostingWorkflowInWPF.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="MainWindow" Height="160" Width="200"> <Grid Width="180" HorizontalAlignment="Left" VerticalAlignment="Top" Height="124"> <Label Content="x:" Width="20" HorizontalAlignment="Left" Name="LabelX" Margin="0,2,0,0" VerticalAlignment="Top" /> <TextBox Name="textBoxX" Width="80" Height="20" VerticalAlignment="Top...