Click here to Skip to main content
15,885,216 members
Articles / Desktop Programming / XAML

A dynamic Rehosted Workflow Designer for WF 4

Rate me:
Please Sign up or sign in to vote.
4.85/5 (26 votes)
29 Jul 2012CPOL10 min read 111.6K   11.8K   78  
This article presents a framework allowing you to integrate the workflow designer more easily in your own applications
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Selen.WorkflowDesigner.Contracts;
using RehostedDesigner.Services.Contracts;
using System.Drawing;
using Selen.WorkflowDesigner.Storage.Contracts;

namespace Selen.ActivityWorkflowType
{
    class VoidActivityType : IWorkflowType
    {
        public VoidActivityType()
        {
            var adapter = new ActivityStorageAdapter();
            this.ToolboxCreatorService = new ToolboxCreatorServiceWithCustomActivities(adapter);
            this.StorageAdapter = adapter;
        }

        public IToolboxCreatorService ToolboxCreatorService
        {
            get;
            private set;
        }

        public IStorageAdapter StorageAdapter
        {
            get;
            private set;
        }

        public string Description
        {
            get
            {
                return "This template does not create a workflow, but an activity-module, that can be reused in other workflows or activities. " +
                    "The activities you create with this template can normally be found in the toolbox after you loaded or created another workflow or activity, if supported by the concerning workflow type. " +
                    "It is possible to define arguments that you can pass into this activity or return from the activity, but there is no pre-defined return value";
            }
        }

        public Bitmap Icon
        {
            get { return null; }
        }

        public string Name
        {
            get { return "Activity without return value"; }
        }

        public string Path
        {
            get { return "Standard"; }
        }

        public bool CanBeDisplayed
        {
            get { return true; }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Student
Germany Germany
I´m a student and hobby programmer from Germany.

Comments and Discussions