Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / Designers / WhileDesigner.cs / 1305376 / WhileDesigner.cs
namespace System.Workflow.Activities
{
using System;
using System.Diagnostics;
using System.Text;
using System.Reflection;
using System.Collections;
using System.CodeDom;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Design;
using System.Collections.ObjectModel;
using System.Runtime.Serialization;
#region Class WhileDesigner
[ActivityDesignerTheme(typeof(WhileDesignerTheme))]
internal sealed class WhileDesigner: SequentialActivityDesigner
{
#region Properties and Methods
protected override void Initialize(Activity activity)
{
base.Initialize(activity);
HelpText = DR.GetString(DR.DropActivityHere);
}
protected override void OnPaint(ActivityDesignerPaintEventArgs e)
{
base.OnPaint(e);
if (Expanded)
{
CompositeDesignerTheme compositeDesignerTheme = e.DesignerTheme as CompositeDesignerTheme;
Debug.Assert(compositeDesignerTheme != null);
if (compositeDesignerTheme == null)
return;
Rectangle bounds = Bounds;
Rectangle textRectangle = TextRectangle;
Rectangle imageRectangle = ImageRectangle;
Point connectionPoint = Point.Empty;
if (!imageRectangle.IsEmpty)
connectionPoint = new Point(imageRectangle.Right + e.AmbientTheme.Margin.Width / 2, imageRectangle.Top + imageRectangle.Height / 2);
else if (!textRectangle.IsEmpty)
connectionPoint = new Point(textRectangle.Right + e.AmbientTheme.Margin.Width / 2, textRectangle.Top + textRectangle.Height / 2);
else
connectionPoint = new Point(bounds.Left + bounds.Width / 2 + e.AmbientTheme.Margin.Width / 2, bounds.Top + e.AmbientTheme.Margin.Height / 2);
Point[] points = new Point[4];
points[0].X = bounds.Left + bounds.Width / 2;
points[0].Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height / 3;
points[1].X = bounds.Right - compositeDesignerTheme.ConnectorSize.Width / 3;
points[1].Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height / 3;
points[2].X = bounds.Right - compositeDesignerTheme.ConnectorSize.Width / 3;
points[2].Y = connectionPoint.Y;
points[3].X = connectionPoint.X;
points[3].Y = connectionPoint.Y;
DrawConnectors(e.Graphics, compositeDesignerTheme.ForegroundPen, points, LineAnchor.None, LineAnchor.ArrowAnchor);
DrawConnectors(e.Graphics, compositeDesignerTheme.ForegroundPen, new Point[] { points[0], new Point(bounds.Left + bounds.Width / 2, bounds.Bottom) }, LineAnchor.None, LineAnchor.None);
}
}
protected override Rectangle[] GetConnectors()
{
Rectangle[] connectors = base.GetConnectors();
CompositeDesignerTheme designerTheme = DesignerTheme as CompositeDesignerTheme;
Debug.Assert(designerTheme != null);
if (Expanded && connectors.GetLength(0) > 0)
connectors[connectors.GetLength(0) - 1].Height = connectors[connectors.GetLength(0) - 1].Height - (((designerTheme != null) ? designerTheme.ConnectorSize.Height : 0) / 3);
return connectors;
}
protected override Size OnLayoutSize(ActivityDesignerLayoutEventArgs e)
{
Size containerSize = base.OnLayoutSize(e);
CompositeDesignerTheme compositeDesignerTheme = e.DesignerTheme as CompositeDesignerTheme;
if (compositeDesignerTheme != null && Expanded)
{
containerSize.Width += 2 * compositeDesignerTheme.ConnectorSize.Width;
containerSize.Height += compositeDesignerTheme.ConnectorSize.Height;
}
return containerSize;
}
public override bool CanInsertActivities(HitTestInfo insertLocation, ReadOnlyCollection activitiesToInsert)
{
//we only allow one activity to be inserted
if (this == ActiveView.AssociatedDesigner && ContainedDesigners.Count > 0)
return false;
return base.CanInsertActivities(insertLocation, activitiesToInsert);
}
#endregion
}
#endregion
#region WhileDesignerTheme
internal sealed class WhileDesignerTheme : CompositeDesignerTheme
{
public WhileDesignerTheme(WorkflowTheme theme)
: base(theme)
{
this.ShowDropShadow = false;
this.ConnectorStartCap = LineAnchor.None;
this.ConnectorEndCap = LineAnchor.ArrowAnchor;
this.ForeColor = Color.FromArgb(0xFF, 0x52, 0x8A, 0xF7);
this.BorderColor = Color.FromArgb(0xFF, 0xE0, 0xE0, 0xE0);
this.BorderStyle = DashStyle.Dash;
this.BackColorStart = Color.FromArgb(0x00, 0x00, 0x00, 0x00);
this.BackColorEnd = Color.FromArgb(0x00, 0x00, 0x00, 0x00);
}
}
#endregion
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MetadataUtilsSmi.cs
- PointHitTestResult.cs
- DbTransaction.cs
- Table.cs
- ListBindingConverter.cs
- PictureBox.cs
- TriggerCollection.cs
- MessageHeaderT.cs
- ActivityScheduledQuery.cs
- CompilerLocalReference.cs
- safelink.cs
- propertyentry.cs
- Invariant.cs
- DateTimeEditor.cs
- DataGridSortCommandEventArgs.cs
- RegexBoyerMoore.cs
- SoapExtensionStream.cs
- SystemWebExtensionsSectionGroup.cs
- MembershipUser.cs
- DriveInfo.cs
- LinkConverter.cs
- TextRange.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- SelectedCellsCollection.cs
- SyndicationSerializer.cs
- SQLDecimal.cs
- SafeCloseHandleCritical.cs
- SystemWebCachingSectionGroup.cs
- X509UI.cs
- ClientConfigPaths.cs
- DataGridTableStyleMappingNameEditor.cs
- FacetValueContainer.cs
- JsonDataContract.cs
- ISFClipboardData.cs
- WebPartAuthorizationEventArgs.cs
- FileRecordSequence.cs
- PagesSection.cs
- Misc.cs
- BufferModeSettings.cs
- WriteLine.cs
- XmlComplianceUtil.cs
- StringStorage.cs
- SelectionProviderWrapper.cs
- MessageSecurityVersion.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- DoubleUtil.cs
- Internal.cs
- HeaderedItemsControl.cs
- HierarchicalDataSourceControl.cs
- ButtonBaseDesigner.cs
- DelegatingHeader.cs
- SpinWait.cs
- WSSecurityOneDotOneReceiveSecurityHeader.cs
- RoleGroup.cs
- DataGridViewTextBoxColumn.cs
- ConfigurationElementCollection.cs
- DataTableReaderListener.cs
- OleDbFactory.cs
- TableLayout.cs
- IDispatchConstantAttribute.cs
- AlignmentYValidation.cs
- SymbolTable.cs
- OutputCacheSettingsSection.cs
- FactoryRecord.cs
- WebControlsSection.cs
- srgsitem.cs
- XPathExpr.cs
- DynamicILGenerator.cs
- ServiceModelSecurityTokenRequirement.cs
- HostingPreferredMapPath.cs
- XmlSchemaGroup.cs
- LocatorBase.cs
- ToolConsole.cs
- TemplateField.cs
- ListViewItem.cs
- OSFeature.cs
- TextFormatterContext.cs
- ReaderWriterLockWrapper.cs
- SamlAuthenticationStatement.cs
- CompiledWorkflowDefinitionContext.cs
- UIElementAutomationPeer.cs
- BitmapScalingModeValidation.cs
- SendMailErrorEventArgs.cs
- TextLine.cs
- CodeGenerationManager.cs
- DataGridViewCheckBoxColumn.cs
- FileCodeGroup.cs
- NextPreviousPagerField.cs
- PeerName.cs
- KeyFrames.cs
- HttpGetClientProtocol.cs
- DesignerCategoryAttribute.cs
- StreamInfo.cs
- Single.cs
- QueryComponents.cs
- RelatedView.cs
- PartialList.cs
- DataServiceResponse.cs
- VersionPair.cs
- EndpointNameMessageFilter.cs