Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / DashStyles.cs / 1305600 / DashStyles.cs
//---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: This file contains the static class DashStyles. // DashStyles contains well known DashStyles implementations. // // History: // 11/15/2004: MichKa - Created it. // //--------------------------------------------------------------------------- using System; using System.Windows; namespace System.Windows.Media { ////// DashStyles - The DashStyles class is static, and contains properties for well known /// dash styles. /// public static class DashStyles { #region Public Static Properties ////// Solid - A solid DashArray (no dashes). /// public static DashStyle Solid { get { if (_solid == null) { DashStyle solid = new DashStyle(); solid.Freeze(); _solid = solid; } return _solid; } } ////// Dash - A DashArray which is 2 on, 2 off /// public static DashStyle Dash { get { if (_dash == null) { DashStyle style = new DashStyle(new double[] {2, 2}, 1); style.Freeze(); _dash = style; } return _dash; } } ////// Dot - A DashArray which is 0 on, 2 off /// public static DashStyle Dot { get { if (_dot == null) { DashStyle style = new DashStyle(new double[] {0, 2}, 0); style.Freeze(); _dot = style; } return _dot; } } ////// DashDot - A DashArray which is 2 on, 2 off, 0 on, 2 off /// public static DashStyle DashDot { get { if (_dashDot == null) { DashStyle style = new DashStyle(new double[] {2, 2, 0, 2}, 1); style.Freeze(); _dashDot = style; } return _dashDot; } } ////// DashDot - A DashArray which is 2 on, 2 off, 0 on, 2 off, 0 on, 2 off /// public static DashStyle DashDotDot { get { if (_dashDotDot == null) { DashStyle style = new DashStyle(new double[] {2, 2, 0, 2, 0, 2}, 1); style.Freeze(); _dashDotDot = style; } return _dashDotDot; } } #endregion Public Static Properties #region Private Static Fields private static DashStyle _solid; private static DashStyle _dash; private static DashStyle _dot; private static DashStyle _dashDot; private static DashStyle _dashDotDot; #endregion Private Static Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // Description: This file contains the static class DashStyles. // DashStyles contains well known DashStyles implementations. // // History: // 11/15/2004: MichKa - Created it. // //--------------------------------------------------------------------------- using System; using System.Windows; namespace System.Windows.Media { ////// DashStyles - The DashStyles class is static, and contains properties for well known /// dash styles. /// public static class DashStyles { #region Public Static Properties ////// Solid - A solid DashArray (no dashes). /// public static DashStyle Solid { get { if (_solid == null) { DashStyle solid = new DashStyle(); solid.Freeze(); _solid = solid; } return _solid; } } ////// Dash - A DashArray which is 2 on, 2 off /// public static DashStyle Dash { get { if (_dash == null) { DashStyle style = new DashStyle(new double[] {2, 2}, 1); style.Freeze(); _dash = style; } return _dash; } } ////// Dot - A DashArray which is 0 on, 2 off /// public static DashStyle Dot { get { if (_dot == null) { DashStyle style = new DashStyle(new double[] {0, 2}, 0); style.Freeze(); _dot = style; } return _dot; } } ////// DashDot - A DashArray which is 2 on, 2 off, 0 on, 2 off /// public static DashStyle DashDot { get { if (_dashDot == null) { DashStyle style = new DashStyle(new double[] {2, 2, 0, 2}, 1); style.Freeze(); _dashDot = style; } return _dashDot; } } ////// DashDot - A DashArray which is 2 on, 2 off, 0 on, 2 off, 0 on, 2 off /// public static DashStyle DashDotDot { get { if (_dashDotDot == null) { DashStyle style = new DashStyle(new double[] {2, 2, 0, 2, 0, 2}, 1); style.Freeze(); _dashDotDot = style; } return _dashDotDot; } } #endregion Public Static Properties #region Private Static Fields private static DashStyle _solid; private static DashStyle _dash; private static DashStyle _dot; private static DashStyle _dashDot; private static DashStyle _dashDotDot; #endregion Private Static Fields } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataColumnPropertyDescriptor.cs
- TransactionsSectionGroup.cs
- PassportAuthenticationEventArgs.cs
- CornerRadius.cs
- VolatileEnlistmentMultiplexing.cs
- XmlAttributes.cs
- RelationshipConstraintValidator.cs
- WebBrowserNavigatedEventHandler.cs
- CodeMethodReturnStatement.cs
- DrawListViewSubItemEventArgs.cs
- ModelServiceImpl.cs
- DataList.cs
- HtmlInputRadioButton.cs
- NameSpaceEvent.cs
- Matrix.cs
- CollectionCodeDomSerializer.cs
- ExpanderAutomationPeer.cs
- UIElementAutomationPeer.cs
- SystemWebSectionGroup.cs
- ImportDesigner.xaml.cs
- _ScatterGatherBuffers.cs
- EntityContainerEntitySet.cs
- Connector.cs
- XmlUtil.cs
- _CacheStreams.cs
- UIAgentMonitorHandle.cs
- DoubleKeyFrameCollection.cs
- FixedNode.cs
- CodeCompileUnit.cs
- WindowsGraphicsCacheManager.cs
- NamespaceEmitter.cs
- BufferedGraphicsContext.cs
- ContractComponent.cs
- Matrix3D.cs
- VersionedStream.cs
- BamlMapTable.cs
- HtmlForm.cs
- SamlAuthorizationDecisionStatement.cs
- MsmqIntegrationMessageProperty.cs
- StylusPointPropertyInfoDefaults.cs
- UserPersonalizationStateInfo.cs
- HtmlAnchor.cs
- SemaphoreSecurity.cs
- PropertyGeneratedEventArgs.cs
- AnnotationResource.cs
- HttpResponseHeader.cs
- WorkflowDesigner.cs
- MimeTypeMapper.cs
- VirtualizingStackPanel.cs
- TagPrefixInfo.cs
- Vector3DConverter.cs
- TokenBasedSet.cs
- EdmError.cs
- DomainUpDown.cs
- WindowsButton.cs
- UserControlParser.cs
- ScriptingScriptResourceHandlerSection.cs
- UnsafeNativeMethods.cs
- Simplifier.cs
- _ConnectStream.cs
- ResourceDefaultValueAttribute.cs
- StylusPointProperty.cs
- ListItemParagraph.cs
- StylusShape.cs
- DecoratedNameAttribute.cs
- ObjectCacheHost.cs
- SecurityResources.cs
- FocusWithinProperty.cs
- NonVisualControlAttribute.cs
- MenuItemStyle.cs
- HTTPNotFoundHandler.cs
- CollectionViewGroupRoot.cs
- BuildResultCache.cs
- SqlCharStream.cs
- SynchronizedRandom.cs
- CompoundFileStreamReference.cs
- GeneralTransform3D.cs
- InstanceData.cs
- Point4DValueSerializer.cs
- BitmapCodecInfo.cs
- ToolStripContentPanelDesigner.cs
- EntityKeyElement.cs
- Atom10ItemFormatter.cs
- Utils.cs
- ProviderIncompatibleException.cs
- BindingSource.cs
- SystemIcmpV4Statistics.cs
- PreloadedPackages.cs
- InspectionWorker.cs
- TriState.cs
- BitSet.cs
- FixedLineResult.cs
- FixedTextBuilder.cs
- XmlSchemaCollection.cs
- ExpressionParser.cs
- MatrixAnimationUsingPath.cs
- ApplicationHost.cs
- ImageFormat.cs
- LinkButton.cs
- PackageRelationship.cs