Code:
/ 4.0 / 4.0 / untmp / 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. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Interlocked.cs
- SqlDataSourceCustomCommandEditor.cs
- ToolStripPanelRow.cs
- SystemWebSectionGroup.cs
- BitmapCodecInfo.cs
- TagPrefixInfo.cs
- CodeLabeledStatement.cs
- DBSchemaTable.cs
- Rect3DValueSerializer.cs
- SqlDataSourceView.cs
- SubstitutionDesigner.cs
- basecomparevalidator.cs
- KeyPressEvent.cs
- RevocationPoint.cs
- TdsRecordBufferSetter.cs
- CredentialCache.cs
- GridViewEditEventArgs.cs
- AdRotator.cs
- TemplateBindingExpressionConverter.cs
- DependencyPropertyKey.cs
- TableProviderWrapper.cs
- SqlDataSourceConfigureFilterForm.cs
- UnionExpr.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ConfigurationLocationCollection.cs
- LowerCaseStringConverter.cs
- StringFormat.cs
- ConstantCheck.cs
- PlainXmlSerializer.cs
- ToolStripDropDownItem.cs
- SqlDataSource.cs
- PageAsyncTaskManager.cs
- WindowsSlider.cs
- ManagementPath.cs
- OdbcTransaction.cs
- SelectionChangedEventArgs.cs
- EventArgs.cs
- DataGridSortCommandEventArgs.cs
- LinqToSqlWrapper.cs
- Pkcs7Signer.cs
- COM2PropertyPageUITypeConverter.cs
- SelectionChangedEventArgs.cs
- Context.cs
- ResourcePermissionBaseEntry.cs
- SoapObjectInfo.cs
- WorkflowRuntimeServicesBehavior.cs
- Translator.cs
- XhtmlBasicPanelAdapter.cs
- HttpCacheVary.cs
- ContainerSelectorGlyph.cs
- PersonalizationProviderHelper.cs
- FixedPage.cs
- AdvancedBindingEditor.cs
- NativeMethods.cs
- SequentialOutput.cs
- HierarchicalDataBoundControlAdapter.cs
- TextEmbeddedObject.cs
- Popup.cs
- CompilationLock.cs
- EntryIndex.cs
- DragDrop.cs
- Thickness.cs
- OrderedDictionary.cs
- Listen.cs
- BaseCAMarshaler.cs
- DateTimeOffsetStorage.cs
- DbQueryCommandTree.cs
- DesignDataSource.cs
- SafePEFileHandle.cs
- CodeIterationStatement.cs
- SqlUserDefinedAggregateAttribute.cs
- NetworkStream.cs
- LineServicesRun.cs
- NavigatorInput.cs
- PreservationFileWriter.cs
- ViewGenerator.cs
- ToolboxComponentsCreatingEventArgs.cs
- Vector3DKeyFrameCollection.cs
- ParseChildrenAsPropertiesAttribute.cs
- SrgsElementList.cs
- PriorityQueue.cs
- CanonicalFontFamilyReference.cs
- CngProvider.cs
- clipboard.cs
- BrowserCapabilitiesCodeGenerator.cs
- ClientBuildManager.cs
- OptimalBreakSession.cs
- ProcessHostMapPath.cs
- CompilerInfo.cs
- ToolStrip.cs
- ChannelTracker.cs
- EtwTrackingParticipant.cs
- LinearGradientBrush.cs
- IFormattable.cs
- ExtendedPropertyDescriptor.cs
- SchemaImporterExtensionsSection.cs
- StringComparer.cs
- DeflateInput.cs
- LongValidatorAttribute.cs
- MultiTrigger.cs