Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- HiddenField.cs
- WpfWebRequestHelper.cs
- Geometry.cs
- BypassElement.cs
- ModelItemExtensions.cs
- XmlMembersMapping.cs
- _DisconnectOverlappedAsyncResult.cs
- DesignerCategoryAttribute.cs
- TextShapeableCharacters.cs
- ToolboxItemCollection.cs
- SimpleTypeResolver.cs
- NetworkAddressChange.cs
- TextHidden.cs
- EmbeddedObject.cs
- DataProviderNameConverter.cs
- SqlFunctionAttribute.cs
- EventLogHandle.cs
- ObjectViewQueryResultData.cs
- AspNetSynchronizationContext.cs
- XamlFigureLengthSerializer.cs
- ZipIOLocalFileHeader.cs
- _HelperAsyncResults.cs
- EventMappingSettings.cs
- MimeMultiPart.cs
- ProcessStartInfo.cs
- XmlSchemaAny.cs
- RegisteredScript.cs
- TableLayoutSettings.cs
- DataGridViewDesigner.cs
- DesignOnlyAttribute.cs
- DrawingCollection.cs
- IdentitySection.cs
- KeyManager.cs
- ProcessHost.cs
- AnnotationHighlightLayer.cs
- HttpRuntime.cs
- TableLayoutSettingsTypeConverter.cs
- HMACSHA1.cs
- PersistenceProvider.cs
- ISessionStateStore.cs
- CollectionContainer.cs
- Int32RectConverter.cs
- ColorMap.cs
- PersianCalendar.cs
- HeaderUtility.cs
- xmlformatgeneratorstatics.cs
- RequestCacheValidator.cs
- CompilationLock.cs
- DataSourceHelper.cs
- HealthMonitoringSectionHelper.cs
- AsyncOperation.cs
- Boolean.cs
- path.cs
- RowType.cs
- EmptyStringExpandableObjectConverter.cs
- ThreadInterruptedException.cs
- DataGridHeaderBorder.cs
- PrivateFontCollection.cs
- SafeSerializationManager.cs
- DataGridToolTip.cs
- Utils.cs
- DataGridTableStyleMappingNameEditor.cs
- OpenTypeMethods.cs
- LicenseManager.cs
- DesignSurface.cs
- CellCreator.cs
- DbgUtil.cs
- DurableInstancingOptions.cs
- EntityDescriptor.cs
- ProviderSettings.cs
- SortQuery.cs
- ColumnProvider.cs
- DrawItemEvent.cs
- WindowsTreeView.cs
- AppliesToBehaviorDecisionTable.cs
- HitTestResult.cs
- FreezableDefaultValueFactory.cs
- FieldNameLookup.cs
- ComponentEvent.cs
- FrameworkRichTextComposition.cs
- Matrix.cs
- DataServiceExpressionVisitor.cs
- DataGridViewSelectedCellsAccessibleObject.cs
- PropertyNames.cs
- Table.cs
- QueryOperationResponseOfT.cs
- WindowsPrincipal.cs
- FastPropertyAccessor.cs
- FileEnumerator.cs
- AppDomainManager.cs
- StructuredProperty.cs
- SecurityContextSecurityTokenAuthenticator.cs
- SizeFConverter.cs
- DataBindEngine.cs
- SQLInt32Storage.cs
- RedirectionProxy.cs
- ItemCollection.cs
- DataGridRowHeaderAutomationPeer.cs
- WebPartVerbCollection.cs
- TypeUsage.cs