September 2010
Intermediate to advanced
272 pages
5h 16m
English
In this task, we will create a workflow running in a WPF application.
Create a WPF project and name it HostingWorkflowInWPF.
Add a workflow to the project named AdditionWorkflow.xaml and author a workflow like this:

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" ...