I am new to both Workflow and WPF and am writing my first IValueConverter in an attempt to properly handle an InArgument of "WorkOrderTypes" Enum type represented as a ComboBox in a custom CodeActivity's ActivityDesigner.
I have used an ObjectDataProvider to successfully populate the ComboBox's ItemsSource property, but am stuck at getting the binding working for the InArgument<WorkOrderTypes>. I have looked around in this forum and elsewhere and have seen
recommendations that i use an Converter class. So I thought I'd give it a try.
My Converter class is probably not coded correctly in this first cut, but I am unable to build the project to use the debugger to see the inputs and outputs to get it working because it won't build. When I try to build it, there are no direct
code syntax errors but I get the error: "The tag 'ComboBoxToWotArgConverter' does not exist in XML namespace 'clr-namespace:MyCo.Workflow.Activities;assembly=MyCo.Workflow.Activities.DemooActivityLibrary'".
The skeleton custom "CreateWorkOrder" CodeActivity, its "CreateWorkOrderDesigner", and the 'ComboBoxToWotArgConverter' classes are all in the same ActivityLibrary assembly MyCo.Workflow.Activities.DemooActivityLibrary". The public
enum "WorkOrderTypes"&
View Complete Post