TaskDesigner.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / Designers / TaskDesigner.cs / 1305376 / TaskDesigner.cs

                            namespace System.Workflow.Activities 
{
 	using System;
	using System.Collections;
	using System.Collections.Generic; 
	using System.Collections.Specialized;
 	using System.CodeDom; 
	using System.Collections.ObjectModel; 
 	using System.ComponentModel;
 	using System.ComponentModel.Design; 
	using System.Drawing;
 	using System.Diagnostics;
	using System.Runtime.Serialization;
	using System.Drawing.Design; 
    using System.Drawing.Drawing2D;
    using System.Windows.Forms; 
	using System.Workflow.ComponentModel; 
 	using System.Workflow.ComponentModel.Design;
	using System.Windows.Forms.Design; 

 	#region Class ReplicatorDesigner

 	internal sealed class ReplicatorDesigner : System.Workflow.Activities.SequenceDesigner 
	{
 		public override bool CanInsertActivities(HitTestInfo insertLocation, ReadOnlyCollection activitiesToInsert) 
        { 
			CompositeActivity compositeActivity = Activity as CompositeActivity;
			if (compositeActivity != null && compositeActivity.EnabledActivities.Count > 0) 
				return false;

            if (activitiesToInsert.Count > 1)
                return false; 

            return base.CanInsertActivities(insertLocation, activitiesToInsert); 
        } 
 	}
 
	#endregion
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
namespace System.Workflow.Activities 
{
 	using System;
	using System.Collections;
	using System.Collections.Generic; 
	using System.Collections.Specialized;
 	using System.CodeDom; 
	using System.Collections.ObjectModel; 
 	using System.ComponentModel;
 	using System.ComponentModel.Design; 
	using System.Drawing;
 	using System.Diagnostics;
	using System.Runtime.Serialization;
	using System.Drawing.Design; 
    using System.Drawing.Drawing2D;
    using System.Windows.Forms; 
	using System.Workflow.ComponentModel; 
 	using System.Workflow.ComponentModel.Design;
	using System.Windows.Forms.Design; 

 	#region Class ReplicatorDesigner

 	internal sealed class ReplicatorDesigner : System.Workflow.Activities.SequenceDesigner 
	{
 		public override bool CanInsertActivities(HitTestInfo insertLocation, ReadOnlyCollection activitiesToInsert) 
        { 
			CompositeActivity compositeActivity = Activity as CompositeActivity;
			if (compositeActivity != null && compositeActivity.EnabledActivities.Count > 0) 
				return false;

            if (activitiesToInsert.Count > 1)
                return false; 

            return base.CanInsertActivities(insertLocation, activitiesToInsert); 
        } 
 	}
 
	#endregion
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK