Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Keeping in line with Mark Schmidt tradition, I present to you a little teaser. I will be posting the code for an animated custom activity designer that you can use for your custom activities. Not only will it allow you to create a cool looking animated custom activity in the Windows Workflow Designer, you can integrate the custom activity designer into your project using only 2 lines of code. The flash file you see below for the MoveFilesActivity uses my generic animated activity designer and only needs to apply the following 2 attributes to the custom activity to get it to work:
[
Designer(typeof(AnimatedActivityDesigner), typeof(IDesigner))]
[AnimatedActivityDesigner(EmbeddedGifResourceName = "AnimatedActivityLib.FileMove.gif")]
public partial class MoveFilesActivity : System.Workflow.ComponentModel.Activity
{
public MoveFilesActivity()
{
InitializeComponent();
}
}
Comments
- Anonymous
September 20, 2006
That's great!! - Anonymous
April 29, 2008
PingBack from http://ezinefrontpageblog.info/mark-schmidts-abode-windows-workflow-animated-activity-designer/