Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Core / System / Windows / Media / LineSegment.cs / 1 / LineSegment.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, 2001 // // File: LineSegment.cs //----------------------------------------------------------------------------- using System; using MS.Internal; using MS.Internal.PresentationCore; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Text; using System.Globalization; using System.Windows.Media; using System.Windows; using System.Text.RegularExpressions; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Diagnostics; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; namespace System.Windows.Media { ////// LineSegment /// public sealed partial class LineSegment : PathSegment { #region Constructors ////// /// public LineSegment() { } ////// /// public LineSegment(Point point, bool isStroked) { Point = point; IsStroked = isStroked; } // Internal constructor supporting smooth joins between segments internal LineSegment(Point point, bool isStroked, bool isSmoothJoin) { Point = point; IsStroked = isStroked; IsSmoothJoin = isSmoothJoin; } #endregion #region AddToFigure internal override void AddToFigure( Matrix matrix, // The transformation matrid PathFigure figure, // The figure to add to ref Point current) // Out: Segment endpoint, not transformed { current = Point; if (matrix.IsIdentity) { figure.Segments.Add(this); } else { Point pt = current; pt *= matrix; figure.Segments.Add(new LineSegment(pt, IsStroked, IsSmoothJoin)); } } #endregion ////// SerializeData - Serialize the contents of this Segment to the provided context. /// internal override void SerializeData(StreamGeometryContext ctx) { ctx.LineTo(Point, IsStroked, IsSmoothJoin); } internal override bool IsCurved() { return false; } ////// Creates a string representation of this object based on the format string /// and IFormatProvider passed in. /// If the provider is null, the CurrentCulture is used. /// See the documentation for IFormattable for more information. /// ////// A string representation of this object. /// internal override string ConvertToString(string format, IFormatProvider provider) { return "L" + ((IFormattable)Point).ToString(format, provider); } } } // 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
- MsmqTransportBindingElement.cs
- BufferedGraphicsManager.cs
- Message.cs
- ChildrenQuery.cs
- DefaultSection.cs
- _Events.cs
- Root.cs
- XmlArrayAttribute.cs
- TextTreeTextNode.cs
- MessageContractImporter.cs
- Literal.cs
- regiisutil.cs
- CounterNameConverter.cs
- LocalBuilder.cs
- ExtensionWindowHeader.cs
- WebPartDescriptionCollection.cs
- DSACryptoServiceProvider.cs
- CompilerErrorCollection.cs
- DataGridViewUtilities.cs
- QueryHandler.cs
- DragCompletedEventArgs.cs
- Renderer.cs
- DetailsView.cs
- EventQueueState.cs
- SourceSwitch.cs
- LineServicesRun.cs
- ContentIterators.cs
- BindingContext.cs
- PropertyEntry.cs
- IPAddress.cs
- FirstMatchCodeGroup.cs
- TouchFrameEventArgs.cs
- UnsafeNativeMethods.cs
- PropertyEmitterBase.cs
- ProxyWebPartConnectionCollection.cs
- EdmScalarPropertyAttribute.cs
- SqlCharStream.cs
- ComAdminInterfaces.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- WebBodyFormatMessageProperty.cs
- CriticalExceptions.cs
- Span.cs
- XmlTextEncoder.cs
- Border.cs
- Config.cs
- LabelLiteral.cs
- RewritingProcessor.cs
- Contracts.cs
- CodeTypeDelegate.cs
- TreeNodeCollection.cs
- TextEditor.cs
- coordinatorscratchpad.cs
- DbConnectionInternal.cs
- GPPOINT.cs
- BrushMappingModeValidation.cs
- AlphabeticalEnumConverter.cs
- BitStream.cs
- CLRBindingWorker.cs
- BuildProviderAppliesToAttribute.cs
- SmtpFailedRecipientsException.cs
- Debugger.cs
- XslAst.cs
- ChangesetResponse.cs
- ErrorInfoXmlDocument.cs
- EventLogPropertySelector.cs
- LazyTextWriterCreator.cs
- ThrowHelper.cs
- HttpHandlersSection.cs
- Decoder.cs
- MergeFailedEvent.cs
- PaperSource.cs
- NoPersistScope.cs
- DbParameterHelper.cs
- FormClosedEvent.cs
- ClientRolePrincipal.cs
- EventListenerClientSide.cs
- Bitmap.cs
- WindowsTitleBar.cs
- QueueProcessor.cs
- TriState.cs
- CreateUserWizardStep.cs
- GrowingArray.cs
- ExpressionBuilder.cs
- PeerInputChannelListener.cs
- While.cs
- ExclusiveTcpListener.cs
- EventWaitHandleSecurity.cs
- WsdlBuildProvider.cs
- MultiSelectRootGridEntry.cs
- Enum.cs
- ToolStripStatusLabel.cs
- ChangeConflicts.cs
- webclient.cs
- ReadonlyMessageFilter.cs
- QuadraticBezierSegment.cs
- VoiceInfo.cs
- NavigationPropertySingletonExpression.cs
- TextModifier.cs
- MobileControlDesigner.cs
- ProxyWebPartConnectionCollection.cs