Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / Designers / ConditionalDesigner.cs / 1305376 / ConditionalDesigner.cs
namespace System.Workflow.Activities { using System; using System.Text; using System.Reflection; using System.Collections; using System.Collections.ObjectModel; using System.CodeDom; using System.ComponentModel; using System.ComponentModel.Design; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Design; using System.Workflow.ComponentModel; using System.Workflow.ComponentModel.Design; using System.Runtime.Serialization; using System.Diagnostics; #region Class ConditionalToolboxItem [Serializable] internal sealed class IfElseToolboxItem: ActivityToolboxItem { public IfElseToolboxItem(Type type) : base(type) { } private IfElseToolboxItem(SerializationInfo info, StreamingContext context) { Deserialize(info, context); } protected override IComponent[] CreateComponentsCore(IDesignerHost designerHost) { CompositeActivity conditionalActivity = new IfElseActivity(); conditionalActivity.Activities.Add(new IfElseBranchActivity()); conditionalActivity.Activities.Add(new IfElseBranchActivity()); return (IComponent[])new IComponent[] { conditionalActivity }; } } #endregion #region Class ConditionalDesigner [ActivityDesignerTheme(typeof(IfElseDesignerTheme))] internal sealed class IfElseDesigner : ParallelActivityDesigner { #region Properties and Methods public override bool CanInsertActivities(HitTestInfo insertLocation, ReadOnlyCollectionactivitiesToInsert) { foreach (Activity activity in activitiesToInsert) { if (!(activity is IfElseBranchActivity)) return false; } return base.CanInsertActivities(insertLocation, activitiesToInsert); } public override bool CanRemoveActivities(ReadOnlyCollection activitiesToRemove) { if ((ContainedDesigners.Count - activitiesToRemove.Count) < 1) return false; return true; } public override bool CanMoveActivities(HitTestInfo moveLocation, ReadOnlyCollection activitiesToMove) { if ((ContainedDesigners.Count - activitiesToMove.Count) < 1) { if (moveLocation != null && moveLocation.AssociatedDesigner != this) return false; } return true; } protected override CompositeActivity OnCreateNewBranch() { return new IfElseBranchActivity(); } protected override void OnPaint(ActivityDesignerPaintEventArgs e) { base.OnPaint(e); if (!Expanded || ContainedDesigners.Count == 0 || this != ActiveView.AssociatedDesigner) return; CompositeDesignerTheme compositeDesignerTheme = e.DesignerTheme as CompositeDesignerTheme; Debug.Assert(compositeDesignerTheme != null); if (compositeDesignerTheme == null) return; //Draw the Icon and Text Rectangle bounds = Bounds; Rectangle imageRectangle = ImageRectangle; Rectangle diamondRectangle = Rectangle.Empty; diamondRectangle.Width = compositeDesignerTheme.ConnectorSize.Height - 2 * e.AmbientTheme.Margin.Height + 2; diamondRectangle.Height = diamondRectangle.Width; diamondRectangle.X = bounds.Left + bounds.Width / 2 - diamondRectangle.Width / 2; diamondRectangle.Y = bounds.Top + TitleHeight + (compositeDesignerTheme.ConnectorSize.Height * 3 / 2 - diamondRectangle.Height) / 2 + 1; using (GraphicsPath decisionDiamond = GetDiamondPath(diamondRectangle)) { e.Graphics.FillPath(compositeDesignerTheme.ForegroundBrush, decisionDiamond); e.Graphics.DrawPath(compositeDesignerTheme.ForegroundPen, decisionDiamond); } diamondRectangle.Y = bounds.Bottom - compositeDesignerTheme.ConnectorSize.Height * 3 / 2 + (compositeDesignerTheme.ConnectorSize.Height * 3 / 2 - diamondRectangle.Height) / 2 + 1; using (GraphicsPath decisionDiamond = GetDiamondPath(diamondRectangle)) { e.Graphics.FillPath(compositeDesignerTheme.ForegroundBrush, decisionDiamond); e.Graphics.DrawPath(compositeDesignerTheme.ForegroundPen, decisionDiamond); } } private GraphicsPath GetDiamondPath(Rectangle rectangle) { Point[] diamondPoints = { new Point(rectangle.Left + rectangle.Width / 2, rectangle.Top), new Point(rectangle.Right - 1, rectangle.Top + rectangle.Height / 2), new Point(rectangle.Left + rectangle.Width / 2, rectangle.Bottom - 1), new Point(rectangle.Left, rectangle.Top + rectangle.Height / 2), new Point(rectangle.Left + rectangle.Width / 2, rectangle.Top) }; GraphicsPath diamondPath = new GraphicsPath(); diamondPath.AddLines(diamondPoints); diamondPath.CloseFigure(); return diamondPath; } #endregion } #endregion #region IfElseDesignerTheme internal sealed class IfElseDesignerTheme : CompositeDesignerTheme { public IfElseDesignerTheme(WorkflowTheme theme) : base(theme) { this.ShowDropShadow = false; this.ConnectorStartCap = LineAnchor.None; this.ConnectorEndCap = LineAnchor.None; this.ForeColor = Color.FromArgb(0xFF, 0x00, 0x64, 0x00); 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
- KnownBoxes.cs
- TemplatePagerField.cs
- TagPrefixCollection.cs
- Debug.cs
- PackWebRequest.cs
- UnknownMessageReceivedEventArgs.cs
- KeyedHashAlgorithm.cs
- StorageEntityTypeMapping.cs
- RegexTypeEditor.cs
- XmlWrappingReader.cs
- PlainXmlSerializer.cs
- ObjectMemberMapping.cs
- PresentationAppDomainManager.cs
- SafeSecurityHandles.cs
- XmlStringTable.cs
- EmptyEnumerator.cs
- SupportedAddressingMode.cs
- ControlAdapter.cs
- ExpressionParser.cs
- EnumerableValidator.cs
- ZoneMembershipCondition.cs
- COM2AboutBoxPropertyDescriptor.cs
- XamlSerializerUtil.cs
- CSharpCodeProvider.cs
- AvTraceDetails.cs
- Events.cs
- InheritedPropertyChangedEventArgs.cs
- Viewport3DVisual.cs
- EdmComplexPropertyAttribute.cs
- TextEditorSelection.cs
- RtfControlWordInfo.cs
- recordstatefactory.cs
- HealthMonitoringSection.cs
- XmlNamedNodeMap.cs
- ParserStreamGeometryContext.cs
- UniformGrid.cs
- AsymmetricKeyExchangeDeformatter.cs
- Screen.cs
- ActiveDocumentEvent.cs
- StorageComplexTypeMapping.cs
- BmpBitmapEncoder.cs
- WorkflowApplicationUnloadedException.cs
- InstanceDataCollection.cs
- _RequestCacheProtocol.cs
- Graphics.cs
- CodeAttributeDeclaration.cs
- NumericUpDownAcceleration.cs
- MergablePropertyAttribute.cs
- StrokeRenderer.cs
- RuntimeArgumentHandle.cs
- SafeWaitHandle.cs
- AnnotationResource.cs
- ApplicationDirectory.cs
- Blend.cs
- SqlCrossApplyToCrossJoin.cs
- HwndHost.cs
- FtpWebResponse.cs
- StorageMappingFragment.cs
- SafeSystemMetrics.cs
- WindowsPrincipal.cs
- OleServicesContext.cs
- StylusPointCollection.cs
- arclist.cs
- _PooledStream.cs
- XmlElementAttribute.cs
- OwnerDrawPropertyBag.cs
- PathSegment.cs
- FieldBuilder.cs
- RequestDescription.cs
- EditorPartChrome.cs
- DTCTransactionManager.cs
- NativeMethods.cs
- ActivityDesignerResources.cs
- CustomExpression.cs
- XmlNavigatorFilter.cs
- TextFormatterHost.cs
- KeyTimeConverter.cs
- ValueTypeFixupInfo.cs
- PrintController.cs
- shaper.cs
- isolationinterop.cs
- DbParameterHelper.cs
- PeerChannelListener.cs
- CodeGroup.cs
- Facet.cs
- Facet.cs
- ForwardPositionQuery.cs
- NativeMethods.cs
- WebBrowsableAttribute.cs
- ObjectRef.cs
- SoapConverter.cs
- SerialPinChanges.cs
- FirewallWrapper.cs
- ConfigXmlAttribute.cs
- ParenExpr.cs
- EntitySetBaseCollection.cs
- OdbcEnvironment.cs
- WorkflowOperationAsyncResult.cs
- SetStoryboardSpeedRatio.cs
- RawStylusSystemGestureInputReport.cs