Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / ProgressBarRenderer.cs / 1305376 / ProgressBarRenderer.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Drawing; using System.Diagnostics.CodeAnalysis; using System.Windows.Forms.VisualStyles; using Microsoft.Win32; ////// /// public sealed class ProgressBarRenderer { //Make this per-thread, so that different threads can safely use these methods. [ThreadStatic] private static VisualStyleRenderer visualStyleRenderer = null; //cannot instantiate private ProgressBarRenderer() { } ////// This is a rendering class for the ProgressBar control. /// ////// /// public static bool IsSupported { get { return VisualStyleRenderer.IsSupported; // no downlevel support } } ////// Returns true if this class is supported for the current OS and user/application settings, /// otherwise returns false. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawHorizontalBar(Graphics g, Rectangle bounds) { InitializeRenderer(VisualStyleElement.ProgressBar.Bar.Normal); visualStyleRenderer.DrawBackground(g, bounds); } ////// Renders a horizontal bar. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawVerticalBar(Graphics g, Rectangle bounds) { InitializeRenderer(VisualStyleElement.ProgressBar.BarVertical.Normal); visualStyleRenderer.DrawBackground(g, bounds); } ////// Renders a vertical bar. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawHorizontalChunks(Graphics g, Rectangle bounds) { InitializeRenderer(VisualStyleElement.ProgressBar.Chunk.Normal); visualStyleRenderer.DrawBackground(g, bounds); } ////// Renders a number of constant size horizontal chunks in the given bounds. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawVerticalChunks(Graphics g, Rectangle bounds) { InitializeRenderer(VisualStyleElement.ProgressBar.ChunkVertical.Normal); visualStyleRenderer.DrawBackground(g, bounds); } ////// Renders a number of constant size vertical chunks in the given bounds. /// ////// /// public static int ChunkThickness { get { InitializeRenderer(VisualStyleElement.ProgressBar.Chunk.Normal); return (visualStyleRenderer.GetInteger(IntegerProperty.ProgressChunkSize)); } } ////// Returns the width/height of a single horizontal/vertical progress bar chunk. /// ////// /// public static int ChunkSpaceThickness { get { InitializeRenderer(VisualStyleElement.ProgressBar.Chunk.Normal); return (visualStyleRenderer.GetInteger(IntegerProperty.ProgressSpaceSize)); } } private static void InitializeRenderer(VisualStyleElement element) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(element); } else { visualStyleRenderer.SetParameters(element); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Returns the width/height of the space between horizontal/vertical progress bar chunks. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Drawing; using System.Diagnostics.CodeAnalysis; using System.Windows.Forms.VisualStyles; using Microsoft.Win32; ////// /// public sealed class ProgressBarRenderer { //Make this per-thread, so that different threads can safely use these methods. [ThreadStatic] private static VisualStyleRenderer visualStyleRenderer = null; //cannot instantiate private ProgressBarRenderer() { } ////// This is a rendering class for the ProgressBar control. /// ////// /// public static bool IsSupported { get { return VisualStyleRenderer.IsSupported; // no downlevel support } } ////// Returns true if this class is supported for the current OS and user/application settings, /// otherwise returns false. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawHorizontalBar(Graphics g, Rectangle bounds) { InitializeRenderer(VisualStyleElement.ProgressBar.Bar.Normal); visualStyleRenderer.DrawBackground(g, bounds); } ////// Renders a horizontal bar. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawVerticalBar(Graphics g, Rectangle bounds) { InitializeRenderer(VisualStyleElement.ProgressBar.BarVertical.Normal); visualStyleRenderer.DrawBackground(g, bounds); } ////// Renders a vertical bar. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawHorizontalChunks(Graphics g, Rectangle bounds) { InitializeRenderer(VisualStyleElement.ProgressBar.Chunk.Normal); visualStyleRenderer.DrawBackground(g, bounds); } ////// Renders a number of constant size horizontal chunks in the given bounds. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawVerticalChunks(Graphics g, Rectangle bounds) { InitializeRenderer(VisualStyleElement.ProgressBar.ChunkVertical.Normal); visualStyleRenderer.DrawBackground(g, bounds); } ////// Renders a number of constant size vertical chunks in the given bounds. /// ////// /// public static int ChunkThickness { get { InitializeRenderer(VisualStyleElement.ProgressBar.Chunk.Normal); return (visualStyleRenderer.GetInteger(IntegerProperty.ProgressChunkSize)); } } ////// Returns the width/height of a single horizontal/vertical progress bar chunk. /// ////// /// public static int ChunkSpaceThickness { get { InitializeRenderer(VisualStyleElement.ProgressBar.Chunk.Normal); return (visualStyleRenderer.GetInteger(IntegerProperty.ProgressSpaceSize)); } } private static void InitializeRenderer(VisualStyleElement element) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(element); } else { visualStyleRenderer.SetParameters(element); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Returns the width/height of the space between horizontal/vertical progress bar chunks. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UIPermission.cs
- HttpCacheVaryByContentEncodings.cs
- BasicExpandProvider.cs
- _AuthenticationState.cs
- AsyncOperation.cs
- UriScheme.cs
- ServiceNameElement.cs
- FixedTextView.cs
- SessionEndedEventArgs.cs
- ListenerElementsCollection.cs
- WmlPanelAdapter.cs
- XmlSchemaFacet.cs
- ImportCatalogPart.cs
- Floater.cs
- TransformedBitmap.cs
- TextDecorationCollection.cs
- ReflectEventDescriptor.cs
- OverflowException.cs
- UIInitializationException.cs
- DictionaryContent.cs
- EnterpriseServicesHelper.cs
- Translator.cs
- ValueType.cs
- ResourcePool.cs
- IntranetCredentialPolicy.cs
- DesignerCapabilities.cs
- FormViewPagerRow.cs
- Int64KeyFrameCollection.cs
- TypefaceMetricsCache.cs
- ActivityCodeDomSerializationManager.cs
- ReliableSessionBindingElementImporter.cs
- CodeConstructor.cs
- HtmlControlPersistable.cs
- TrimSurroundingWhitespaceAttribute.cs
- OracleTransaction.cs
- unsafenativemethodsother.cs
- ListViewInsertedEventArgs.cs
- TextBoxView.cs
- UnsafeNativeMethods.cs
- SqlDependencyListener.cs
- CheckBoxRenderer.cs
- SocketInformation.cs
- Environment.cs
- BitmapPalette.cs
- OracleBoolean.cs
- BigInt.cs
- StdValidatorsAndConverters.cs
- MethodInfo.cs
- ObjectViewEntityCollectionData.cs
- RelationshipType.cs
- BuildProvider.cs
- SecureStringHasher.cs
- ActivityExecutorSurrogate.cs
- PathFigureCollection.cs
- assertwrapper.cs
- _emptywebproxy.cs
- StorageScalarPropertyMapping.cs
- ResponseBodyWriter.cs
- InternalConfigRoot.cs
- PolyBezierSegment.cs
- CollectionViewGroup.cs
- Normalization.cs
- NegotiationTokenAuthenticator.cs
- FontStyle.cs
- MarshalByRefObject.cs
- IERequestCache.cs
- StubHelpers.cs
- ToolStripDropDownMenu.cs
- Model3D.cs
- basevalidator.cs
- XmlEnumAttribute.cs
- PieceDirectory.cs
- XmlSchemaType.cs
- EntityViewGenerator.cs
- AttributeQuery.cs
- SynchronizedInputHelper.cs
- StatusBarPanel.cs
- FeatureManager.cs
- SecurityUniqueId.cs
- RepeatInfo.cs
- XamlStyleSerializer.cs
- SizeFConverter.cs
- DiagnosticsConfiguration.cs
- SiteMapDataSourceView.cs
- DrawingContextWalker.cs
- TrackingParticipant.cs
- clipboard.cs
- BinaryFormatterWriter.cs
- SynchronizedDispatch.cs
- XhtmlBasicLiteralTextAdapter.cs
- HtmlTable.cs
- ICollection.cs
- FormView.cs
- MenuBase.cs
- LocalizedNameDescriptionPair.cs
- MsmqIntegrationInputChannel.cs
- Label.cs
- TypeHelper.cs
- CompiledQueryCacheEntry.cs
- VisualStates.cs