Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Framework / System / Windows / Shapes / Polyline.cs / 1 / Polyline.cs
//---------------------------------------------------------------------------- // File: Polyline.cs // // Description: // Implementation of Polyline shape element. // // History: // 05/30/02 - [....] - Created. // // Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // //--------------------------------------------------------------------------- using System.Windows.Shapes; using System.Diagnostics; using System.Windows.Threading; using System.Windows; using System.Windows.Media; using MS.Internal; using System; namespace System.Windows.Shapes { ////// The Polyline shape element /// This element (like all shapes) belongs under a Canvas, /// and will be presented by the parent canvas. /// public sealed class Polyline : Shape { #region Constructors ////// Instantiates a new instance of a Polyline. /// public Polyline() { } #endregion Constructors #region Dynamic Properties ////// Points property /// public static readonly DependencyProperty PointsProperty = DependencyProperty.Register( "Points", typeof(PointCollection), typeof(Polyline), new FrameworkPropertyMetadata(new FreezableDefaultValueFactory(PointCollection.Empty), FrameworkPropertyMetadataOptions.AffectsMeasure | FrameworkPropertyMetadataOptions.AffectsRender)); ////// Points property /// public PointCollection Points { get { return (PointCollection)GetValue(PointsProperty); } set { SetValue(PointsProperty, value); } } ////// FillRule property /// public static readonly DependencyProperty FillRuleProperty = DependencyProperty.Register( "FillRule", typeof(FillRule), typeof(Polyline), new FrameworkPropertyMetadata( FillRule.EvenOdd, FrameworkPropertyMetadataOptions.AffectsRender), new ValidateValueCallback(System.Windows.Media.ValidateEnums.IsFillRuleValid) ); ////// FillRule property /// public FillRule FillRule { get { return (FillRule)GetValue(FillRuleProperty); } set { SetValue(FillRuleProperty, value); } } #endregion Dynamic Properties #region Protected Methods and Properties ////// Get the polyline that defines this shape /// protected override Geometry DefiningGeometry { get { return _polylineGeometry; } } #endregion #region Internal methods internal override void CacheDefiningGeometry() { PointCollection pointCollection = Points; PathFigure pathFigure = new PathFigure(); // Are we degenerate? // Yes, if we don't have data if (pointCollection == null) { _polylineGeometry = Geometry.Empty; return; } // Create the Polyline PathGeometry // if (pointCollection.Count > 0) { pathFigure.StartPoint = pointCollection[0]; if (pointCollection.Count > 1) { Point[] array = new Point[pointCollection.Count - 1]; for (int i = 1; i < pointCollection.Count; i++) { array[i - 1] = pointCollection[i]; } pathFigure.Segments.Add(new PolyLineSegment(array, true)); } } PathGeometry polylineGeometry = new PathGeometry(); polylineGeometry.Figures.Add(pathFigure); // Set FillRule polylineGeometry.FillRule = FillRule; if (polylineGeometry.Bounds == Rect.Empty) { _polylineGeometry = Geometry.Empty; } else { _polylineGeometry = polylineGeometry; } } #endregion Internal methods #region Private Methods and Members private Geometry _polylineGeometry; #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
- GeometryConverter.cs
- VisualStateChangedEventArgs.cs
- FixedSOMLineCollection.cs
- DataGridViewMethods.cs
- ProfileModule.cs
- HtmlSelectionListAdapter.cs
- ImageBrush.cs
- oledbconnectionstring.cs
- FixedHyperLink.cs
- CompilationSection.cs
- WindowsAuthenticationModule.cs
- FormatConvertedBitmap.cs
- TextEditorTables.cs
- EntityCommandCompilationException.cs
- Control.cs
- MaskedTextBox.cs
- AsyncResult.cs
- QuadraticBezierSegment.cs
- ScrollProperties.cs
- LoggedException.cs
- BStrWrapper.cs
- ProcessHostConfigUtils.cs
- DbParameterCollectionHelper.cs
- VirtualDirectoryMappingCollection.cs
- EntityDataSourceEntitySetNameItem.cs
- FusionWrap.cs
- FixedElement.cs
- PropertyTabAttribute.cs
- UrlPath.cs
- ProfileInfo.cs
- XmlSchemaImport.cs
- Section.cs
- TableItemStyle.cs
- ToolStripDropDownMenu.cs
- WorkflowTraceTransfer.cs
- SessionStateModule.cs
- DesignerSerializationOptionsAttribute.cs
- PointCollectionValueSerializer.cs
- SoapIgnoreAttribute.cs
- ScrollBarRenderer.cs
- ItemsControlAutomationPeer.cs
- StyleXamlTreeBuilder.cs
- TypeNameConverter.cs
- TemplateManager.cs
- XPathNodeList.cs
- WebPartEditVerb.cs
- MasterPageBuildProvider.cs
- CompiledIdentityConstraint.cs
- XmlReturnWriter.cs
- ModelFactory.cs
- MetadataUtil.cs
- WebPartEditVerb.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- EditorZoneBase.cs
- TextRunCacheImp.cs
- GetParentChain.cs
- LinkedResourceCollection.cs
- ActivityExecutionContextCollection.cs
- WindowsListViewItem.cs
- BulletChrome.cs
- HealthMonitoringSection.cs
- DiagnosticsConfiguration.cs
- HScrollProperties.cs
- ParameterElement.cs
- ListViewItem.cs
- TransformDescriptor.cs
- MaterialGroup.cs
- M3DUtil.cs
- ParameterRetriever.cs
- VoiceObjectToken.cs
- TextFormatterContext.cs
- figurelengthconverter.cs
- CodeRegionDirective.cs
- HMACMD5.cs
- ToolBarTray.cs
- ConfigurationStrings.cs
- PrintPageEvent.cs
- JpegBitmapEncoder.cs
- _FtpDataStream.cs
- BooleanAnimationBase.cs
- AlternateView.cs
- DataListItem.cs
- XamlSerializerUtil.cs
- AsymmetricKeyExchangeFormatter.cs
- Descriptor.cs
- BinaryConverter.cs
- Rotation3D.cs
- TimeoutException.cs
- MemberExpression.cs
- FaultReason.cs
- GPPOINT.cs
- ResizeBehavior.cs
- AdPostCacheSubstitution.cs
- GrammarBuilderPhrase.cs
- RadioButtonList.cs
- EmptyCollection.cs
- HtmlDocument.cs
- ViewManager.cs
- PolicyStatement.cs
- ObjectAssociationEndMapping.cs