Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Core / CSharp / System / Windows / Media / DashStyles.cs / 1 / 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
- DefaultMemberAttribute.cs
- Calendar.cs
- AnnotationResourceCollection.cs
- ProvidersHelper.cs
- ExtentKey.cs
- StylusLogic.cs
- ServerValidateEventArgs.cs
- EncoderParameter.cs
- wgx_commands.cs
- AsymmetricCryptoHandle.cs
- ModelItemDictionaryImpl.cs
- ImageInfo.cs
- EntryWrittenEventArgs.cs
- RoleGroupCollectionEditor.cs
- KeyInfo.cs
- SurrogateSelector.cs
- Trigger.cs
- NativeWindow.cs
- ThreadSafeMessageFilterTable.cs
- VirtualizedItemPattern.cs
- PropertyEntry.cs
- Form.cs
- Collection.cs
- RectIndependentAnimationStorage.cs
- SplitterPanelDesigner.cs
- ToolStripManager.cs
- SpeechSeg.cs
- SchemaMerger.cs
- TerminatingOperationBehavior.cs
- ConnectionStringSettings.cs
- ProgressPage.cs
- XamlPoint3DCollectionSerializer.cs
- ContractComponent.cs
- CheckBoxFlatAdapter.cs
- ParserExtension.cs
- ISAPIWorkerRequest.cs
- BoolExpression.cs
- Point.cs
- PathSegment.cs
- ToolStripContainerDesigner.cs
- Rotation3DAnimationUsingKeyFrames.cs
- HMACSHA384.cs
- SettingsPropertyValueCollection.cs
- PackageProperties.cs
- ToolStrip.cs
- FileEnumerator.cs
- SecurityCookieModeValidator.cs
- CompatibleIComparer.cs
- ExternalFile.cs
- AdvancedBindingEditor.cs
- SqlCacheDependency.cs
- DocumentPropertiesDialog.cs
- WindowsSysHeader.cs
- HotSpotCollection.cs
- MediaScriptCommandRoutedEventArgs.cs
- DataGridViewColumnTypeEditor.cs
- ProvidersHelper.cs
- ScrollableControl.cs
- ComponentChangingEvent.cs
- HandlerMappingMemo.cs
- ISAPIApplicationHost.cs
- ServiceDesigner.cs
- ProgressBar.cs
- MeshGeometry3D.cs
- BuildProvider.cs
- ContractDescription.cs
- HTMLTextWriter.cs
- AppDomainFactory.cs
- ToolboxItemCollection.cs
- ConfigXmlCDataSection.cs
- CalendarButtonAutomationPeer.cs
- SiteMapNodeCollection.cs
- FunctionNode.cs
- BadImageFormatException.cs
- SecurityTokenParameters.cs
- Int16.cs
- CryptoHandle.cs
- ObjectListComponentEditor.cs
- graph.cs
- SystemTcpConnection.cs
- SmtpFailedRecipientsException.cs
- _OverlappedAsyncResult.cs
- EngineSite.cs
- MemoryStream.cs
- IntegerFacetDescriptionElement.cs
- PropertyPath.cs
- FixUpCollection.cs
- ConfigXmlElement.cs
- RayHitTestParameters.cs
- TransactionContextValidator.cs
- HostVisual.cs
- SizeChangedEventArgs.cs
- EntityContainerRelationshipSet.cs
- RouteValueDictionary.cs
- TypeSystemProvider.cs
- LinkLabelLinkClickedEvent.cs
- RuntimeResourceSet.cs
- MediaScriptCommandRoutedEventArgs.cs
- MenuCommands.cs
- InternalConfigHost.cs