using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Collections; using System.Drawing; using System.Linq; using System.Workflow.ComponentModel; using System.Workflow.ComponentModel.Design; using System.Workflow.ComponentModel.Compiler; using System.Workflow.ComponentModel.Serialization; using System.Workflow.Runtime; using System.Workflow.Activities; using System.Workflow.Activities.Rules;
namespace DependencyPropertyExample { public partial class Activity1 : System.Workflow.ComponentModel.Activity { public Activity1() { InitializeComponent(); }
public static DependencyProperty AccountProperty = DependencyProperty.Register("Account", typeof(Int32), typeof(Activity1));
[DescriptionAttribute("Account")] [CategoryAttribute("Account Category")] [BrowsableAttribute(true)] [DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Visible)] public Int32 Account { get { return ((Int32)(base.GetValue(Activity1.AccountProperty))); } set { base.SetValue(Activity1.AccountProperty, value); } }
public static DependencyProperty SuccessEvent = DependencyProperty.Register("Success", typeof(EventHandler), typeof(Activity1));