Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / ProgressBarRenderer.cs / 1 / 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. // Copyright (c) Microsoft Corporation. All rights reserved./// 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
- BaseValidator.cs
- QueryOpeningEnumerator.cs
- PeerObject.cs
- BitmapFrameDecode.cs
- TemplatedEditableDesignerRegion.cs
- WmfPlaceableFileHeader.cs
- _SslState.cs
- PropertyItemInternal.cs
- ResourceReader.cs
- SqlUserDefinedAggregateAttribute.cs
- ViewStateException.cs
- TriggerActionCollection.cs
- relpropertyhelper.cs
- CellRelation.cs
- NativeRightsManagementAPIsStructures.cs
- CommandPlan.cs
- CompositionAdorner.cs
- SettingsSavedEventArgs.cs
- WindowAutomationPeer.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- XmlHierarchicalEnumerable.cs
- DataServiceQueryOfT.cs
- CompositeScriptReference.cs
- KoreanLunisolarCalendar.cs
- SqlFileStream.cs
- ExpandedWrapper.cs
- PeerNameRecordCollection.cs
- FactoryId.cs
- KeyFrames.cs
- ItemCheckedEvent.cs
- ACE.cs
- LabelTarget.cs
- DetailsViewInsertEventArgs.cs
- RegexCharClass.cs
- UnsettableComboBox.cs
- ToolStripContentPanelDesigner.cs
- MessageBox.cs
- NamespaceQuery.cs
- FilteredDataSetHelper.cs
- ZeroOpNode.cs
- SmtpNetworkElement.cs
- FrameworkContentElement.cs
- wgx_exports.cs
- UInt32.cs
- ProxyWebPartManager.cs
- LogStore.cs
- ErrorFormatter.cs
- UserInitiatedNavigationPermission.cs
- HttpResponseHeader.cs
- CancelRequestedRecord.cs
- BaseTemplateCodeDomTreeGenerator.cs
- TableColumn.cs
- XamlValidatingReader.cs
- CodeDirectiveCollection.cs
- DoubleAnimationClockResource.cs
- SelectionProviderWrapper.cs
- ValidationRule.cs
- AspNetPartialTrustHelpers.cs
- CommandID.cs
- DataViewManagerListItemTypeDescriptor.cs
- columnmapfactory.cs
- AdministrationHelpers.cs
- DelimitedListTraceListener.cs
- EventLogEntryCollection.cs
- SparseMemoryStream.cs
- StringCollection.cs
- QueryReaderSettings.cs
- GroupItemAutomationPeer.cs
- SourceFileInfo.cs
- HttpCookieCollection.cs
- TreeViewBindingsEditorForm.cs
- EntityStoreSchemaGenerator.cs
- AutomationPropertyInfo.cs
- ContentAlignmentEditor.cs
- TextTreeRootNode.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- SoapAttributeAttribute.cs
- CodeChecksumPragma.cs
- KeyEvent.cs
- CopyCodeAction.cs
- baseaxisquery.cs
- MemoryFailPoint.cs
- DurableInstancingOptions.cs
- _HTTPDateParse.cs
- DataServiceStreamResponse.cs
- TransportManager.cs
- SamlAuthorityBinding.cs
- GACMembershipCondition.cs
- HandlerBase.cs
- DockPattern.cs
- TypeProvider.cs
- SystemResourceHost.cs
- WSHttpSecurity.cs
- mda.cs
- DrawingAttributeSerializer.cs
- PropertyDescriptorCollection.cs
- autovalidator.cs
- FormatterServicesNoSerializableCheck.cs
- Internal.cs
- MessageQueuePermissionAttribute.cs