Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Shapes / Polygon.cs / 1 / Polygon.cs
//---------------------------------------------------------------------------- // File: Polygon.cs // // Description: // Implementation of Polygon shape element. // // History: // 05/30/02 - AdSmith - 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 polygon shape element /// This element (like all shapes) belongs under a Canvas, /// and will be presented by the parent canvas. /// Since a Polygon is really a polyline which closes its path /// public sealed class Polygon : Shape { #region Constructors ////// Instantiates a new instance of a polygon. /// public Polygon() { } #endregion Constructors #region Dynamic Properties ////// Points property /// public static readonly DependencyProperty PointsProperty = DependencyProperty.Register( "Points", typeof(PointCollection), typeof(Polygon), 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(Polygon), 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 polygon that defines this shape /// protected override Geometry DefiningGeometry { get { return _polygonGeometry; } } #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) { _polygonGeometry = Geometry.Empty; return; } // Create the polygon PathGeometry // ISSUE-[....]-07/11/2003 - Bug 859068 // The constructor for PathFigure that takes a PointCollection is internal in the Core // so the below causes an A/V. Consider making it public. 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)); } pathFigure.IsClosed = true; } PathGeometry polygonGeometry = new PathGeometry(); polygonGeometry.Figures.Add(pathFigure); // Set FillRule polygonGeometry.FillRule = FillRule; _polygonGeometry = polygonGeometry; } #endregion Internal Methods #region Private Methods and Members private Geometry _polygonGeometry; #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //---------------------------------------------------------------------------- // File: Polygon.cs // // Description: // Implementation of Polygon shape element. // // History: // 05/30/02 - AdSmith - 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 polygon shape element /// This element (like all shapes) belongs under a Canvas, /// and will be presented by the parent canvas. /// Since a Polygon is really a polyline which closes its path /// public sealed class Polygon : Shape { #region Constructors ////// Instantiates a new instance of a polygon. /// public Polygon() { } #endregion Constructors #region Dynamic Properties ////// Points property /// public static readonly DependencyProperty PointsProperty = DependencyProperty.Register( "Points", typeof(PointCollection), typeof(Polygon), 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(Polygon), 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 polygon that defines this shape /// protected override Geometry DefiningGeometry { get { return _polygonGeometry; } } #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) { _polygonGeometry = Geometry.Empty; return; } // Create the polygon PathGeometry // ISSUE-[....]-07/11/2003 - Bug 859068 // The constructor for PathFigure that takes a PointCollection is internal in the Core // so the below causes an A/V. Consider making it public. 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)); } pathFigure.IsClosed = true; } PathGeometry polygonGeometry = new PathGeometry(); polygonGeometry.Figures.Add(pathFigure); // Set FillRule polygonGeometry.FillRule = FillRule; _polygonGeometry = polygonGeometry; } #endregion Internal Methods #region Private Methods and Members private Geometry _polygonGeometry; #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
- ArithmeticException.cs
- CatalogZone.cs
- KeyInterop.cs
- Region.cs
- util.cs
- FrameworkContextData.cs
- XamlFrame.cs
- CompatibleIComparer.cs
- FontResourceCache.cs
- EdgeModeValidation.cs
- TextProperties.cs
- HMACSHA1.cs
- DependencyPropertyChangedEventArgs.cs
- AdjustableArrowCap.cs
- SizeFConverter.cs
- StylusDevice.cs
- StylusCollection.cs
- DnsEndpointIdentity.cs
- indexingfiltermarshaler.cs
- AQNBuilder.cs
- ItemsChangedEventArgs.cs
- CodeAttributeArgument.cs
- DBConcurrencyException.cs
- DesigntimeLicenseContext.cs
- TaiwanCalendar.cs
- BitStream.cs
- AmbientProperties.cs
- GuidelineCollection.cs
- DragDeltaEventArgs.cs
- StylusPointPropertyInfoDefaults.cs
- ProcessInputEventArgs.cs
- UrlPath.cs
- SynchronizationContext.cs
- EnumMember.cs
- namescope.cs
- GeneralTransform2DTo3DTo2D.cs
- ClientSettingsSection.cs
- CodeGenerator.cs
- LocationChangedEventArgs.cs
- Button.cs
- ObjectManager.cs
- LocatorManager.cs
- PropertyRef.cs
- SqlNotificationEventArgs.cs
- DataGridViewCellEventArgs.cs
- PartialClassGenerationTaskInternal.cs
- KeyboardDevice.cs
- ComNativeDescriptor.cs
- TraceSwitch.cs
- HtmlSelectionListAdapter.cs
- ReadOnlyNameValueCollection.cs
- KeyFrames.cs
- BuildProviderCollection.cs
- GreenMethods.cs
- SynchronizedInputProviderWrapper.cs
- CapabilitiesRule.cs
- WindowsListViewGroupSubsetLink.cs
- SafeEventLogWriteHandle.cs
- NamedPipeConnectionPoolSettings.cs
- SystemTcpConnection.cs
- DbBuffer.cs
- TimeManager.cs
- ComponentTray.cs
- BitmapDownload.cs
- Trustee.cs
- HttpFileCollection.cs
- RegexMatch.cs
- TaskExceptionHolder.cs
- LinqDataSourceHelper.cs
- WebPartCollection.cs
- CornerRadius.cs
- StorageModelBuildProvider.cs
- XmlTypeAttribute.cs
- QueryStringParameter.cs
- PermissionToken.cs
- TreeNodeConverter.cs
- CssStyleCollection.cs
- IApplicationTrustManager.cs
- DataPagerField.cs
- GridViewUpdatedEventArgs.cs
- ActiveDesignSurfaceEvent.cs
- GeneralTransform3DTo2D.cs
- InstanceKeyCollisionException.cs
- DateTimeOffsetStorage.cs
- DependencyObjectCodeDomSerializer.cs
- CompositeFontFamily.cs
- SpotLight.cs
- Html32TextWriter.cs
- HttpListenerPrefixCollection.cs
- SudsParser.cs
- ListViewDeletedEventArgs.cs
- ProofTokenCryptoHandle.cs
- FieldBuilder.cs
- FileEnumerator.cs
- QilPatternFactory.cs
- ObjectDataSourceEventArgs.cs
- _LocalDataStore.cs
- SectionUpdates.cs
- ReadWriteControlDesigner.cs
- AssemblyBuilderData.cs