Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / WinForms / Managed / System / WinForms / ComboBoxRenderer.cs / 1 / ComboBoxRenderer.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.Internal; using System.Windows.Forms.VisualStyles; using Microsoft.Win32; ////// /// public sealed class ComboBoxRenderer { //Make this per-thread, so that different threads can safely use these methods. [ThreadStatic] private static VisualStyleRenderer visualStyleRenderer = null; private static readonly VisualStyleElement ComboBoxElement = VisualStyleElement.ComboBox.DropDownButton.Normal; private static readonly VisualStyleElement TextBoxElement = VisualStyleElement.TextBox.TextEdit.Normal; //cannot instantiate private ComboBoxRenderer() { } ////// This is a rendering class for the ComboBox control. /// ////// /// public static bool IsSupported { get { return VisualStyleRenderer.IsSupported; // no downlevel support } } private static void DrawBackground(Graphics g, Rectangle bounds, ComboBoxState state) { visualStyleRenderer.DrawBackground(g, bounds); //for disabled comboboxes, comctl does not use the window backcolor, so // we don't refill here in that case. if (state != ComboBoxState.Disabled) { Color windowColor = visualStyleRenderer.GetColor(ColorProperty.FillColor); if (windowColor != SystemColors.Window) { Rectangle fillRect = visualStyleRenderer.GetBackgroundContentRectangle(g, bounds); fillRect.Inflate(-2, -2); //then we need to re-fill the background. g.FillRectangle(SystemBrushes.Window, fillRect); } } } ////// 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 DrawTextBox(Graphics g, Rectangle bounds, ComboBoxState state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } else { visualStyleRenderer.SetParameters(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } DrawBackground(g, bounds, state); } ////// Renders the textbox part of a ComboBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, ComboBoxState state) { DrawTextBox(g, bounds, comboBoxText, font, TextFormatFlags.TextBoxControl, state); } ////// Renders the textbox part of a ComboBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, Rectangle textBounds, ComboBoxState state) { DrawTextBox(g, bounds, comboBoxText, font, textBounds, TextFormatFlags.TextBoxControl, state); } ////// Renders the textbox part of a ComboBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, TextFormatFlags flags, ComboBoxState state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } else { visualStyleRenderer.SetParameters(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } Rectangle textBounds = visualStyleRenderer.GetBackgroundContentRectangle(g, bounds); textBounds.Inflate(-2,-2); DrawTextBox(g, bounds, comboBoxText, font, textBounds, flags, state); } ////// Renders the textbox part of a ComboBox control. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, Rectangle textBounds, TextFormatFlags flags, ComboBoxState state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } else { visualStyleRenderer.SetParameters(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } DrawBackground(g, bounds, state); Color textColor = visualStyleRenderer.GetColor(ColorProperty.TextColor); TextRenderer.DrawText(g, comboBoxText, font, textBounds, textColor, flags); } ////// Renders the textbox part of a ComboBox control. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawDropDownButton(Graphics g, Rectangle bounds, ComboBoxState state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(ComboBoxElement.ClassName, ComboBoxElement.Part, (int)state); } else { visualStyleRenderer.SetParameters(ComboBoxElement.ClassName, ComboBoxElement.Part, (int)state); } visualStyleRenderer.DrawBackground(g, bounds); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Renders a ComboBox drop-down button. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Drawing; using System.Diagnostics.CodeAnalysis; using System.Windows.Forms.Internal; using System.Windows.Forms.VisualStyles; using Microsoft.Win32; ////// /// public sealed class ComboBoxRenderer { //Make this per-thread, so that different threads can safely use these methods. [ThreadStatic] private static VisualStyleRenderer visualStyleRenderer = null; private static readonly VisualStyleElement ComboBoxElement = VisualStyleElement.ComboBox.DropDownButton.Normal; private static readonly VisualStyleElement TextBoxElement = VisualStyleElement.TextBox.TextEdit.Normal; //cannot instantiate private ComboBoxRenderer() { } ////// This is a rendering class for the ComboBox control. /// ////// /// public static bool IsSupported { get { return VisualStyleRenderer.IsSupported; // no downlevel support } } private static void DrawBackground(Graphics g, Rectangle bounds, ComboBoxState state) { visualStyleRenderer.DrawBackground(g, bounds); //for disabled comboboxes, comctl does not use the window backcolor, so // we don't refill here in that case. if (state != ComboBoxState.Disabled) { Color windowColor = visualStyleRenderer.GetColor(ColorProperty.FillColor); if (windowColor != SystemColors.Window) { Rectangle fillRect = visualStyleRenderer.GetBackgroundContentRectangle(g, bounds); fillRect.Inflate(-2, -2); //then we need to re-fill the background. g.FillRectangle(SystemBrushes.Window, fillRect); } } } ////// 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 DrawTextBox(Graphics g, Rectangle bounds, ComboBoxState state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } else { visualStyleRenderer.SetParameters(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } DrawBackground(g, bounds, state); } ////// Renders the textbox part of a ComboBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, ComboBoxState state) { DrawTextBox(g, bounds, comboBoxText, font, TextFormatFlags.TextBoxControl, state); } ////// Renders the textbox part of a ComboBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, Rectangle textBounds, ComboBoxState state) { DrawTextBox(g, bounds, comboBoxText, font, textBounds, TextFormatFlags.TextBoxControl, state); } ////// Renders the textbox part of a ComboBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, TextFormatFlags flags, ComboBoxState state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } else { visualStyleRenderer.SetParameters(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } Rectangle textBounds = visualStyleRenderer.GetBackgroundContentRectangle(g, bounds); textBounds.Inflate(-2,-2); DrawTextBox(g, bounds, comboBoxText, font, textBounds, flags, state); } ////// Renders the textbox part of a ComboBox control. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawTextBox(Graphics g, Rectangle bounds, string comboBoxText, Font font, Rectangle textBounds, TextFormatFlags flags, ComboBoxState state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } else { visualStyleRenderer.SetParameters(TextBoxElement.ClassName, TextBoxElement.Part, (int)state); } DrawBackground(g, bounds, state); Color textColor = visualStyleRenderer.GetColor(ColorProperty.TextColor); TextRenderer.DrawText(g, comboBoxText, font, textBounds, textColor, flags); } ////// Renders the textbox part of a ComboBox control. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawDropDownButton(Graphics g, Rectangle bounds, ComboBoxState state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(ComboBoxElement.ClassName, ComboBoxElement.Part, (int)state); } else { visualStyleRenderer.SetParameters(ComboBoxElement.ClassName, ComboBoxElement.Part, (int)state); } visualStyleRenderer.DrawBackground(g, bounds); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Renders a ComboBox drop-down button. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ParseChildrenAsPropertiesAttribute.cs
- RelationalExpressions.cs
- ListSortDescriptionCollection.cs
- PrimarySelectionGlyph.cs
- FilterableAttribute.cs
- ProfileGroupSettings.cs
- XmlSerializerFactory.cs
- MutexSecurity.cs
- TdsRecordBufferSetter.cs
- CompositeDataBoundControl.cs
- HttpRequestContext.cs
- ParameterBuilder.cs
- EntitySqlQueryBuilder.cs
- ProcessHostConfigUtils.cs
- CharStorage.cs
- StreamInfo.cs
- FrameworkContextData.cs
- DataGridViewComboBoxEditingControl.cs
- HttpsHostedTransportConfiguration.cs
- DynamicDataManager.cs
- PerspectiveCamera.cs
- VerticalAlignConverter.cs
- ElapsedEventArgs.cs
- CheckBoxRenderer.cs
- EntityTypeEmitter.cs
- ThumbAutomationPeer.cs
- AsyncPostBackTrigger.cs
- ActivityExecutionContextCollection.cs
- SignedXml.cs
- XPathBinder.cs
- SplashScreen.cs
- DataControlFieldTypeEditor.cs
- SocketAddress.cs
- metadatamappinghashervisitor.cs
- AssemblyHash.cs
- ReceiveActivity.cs
- DefaultMemberAttribute.cs
- SqlDataSourceRefreshSchemaForm.cs
- HttpListenerPrefixCollection.cs
- XPathChildIterator.cs
- RotateTransform3D.cs
- TextServicesManager.cs
- StickyNoteAnnotations.cs
- Switch.cs
- Axis.cs
- HitTestWithGeometryDrawingContextWalker.cs
- BamlStream.cs
- CFGGrammar.cs
- SafeLibraryHandle.cs
- PlainXmlDeserializer.cs
- AutomationPattern.cs
- ActiveDocumentEvent.cs
- ChtmlPageAdapter.cs
- SmtpSection.cs
- GuidelineCollection.cs
- SqlMetaData.cs
- FlowDocumentScrollViewer.cs
- TagPrefixAttribute.cs
- DataSourceNameHandler.cs
- TransformerInfo.cs
- VisualStyleInformation.cs
- Timeline.cs
- MethodRental.cs
- ClientSettingsProvider.cs
- StoryFragments.cs
- DropTarget.cs
- DropDownButton.cs
- SecurityUniqueId.cs
- SkipQueryOptionExpression.cs
- ErrorLog.cs
- CodeTypeDeclaration.cs
- ConfigXmlAttribute.cs
- InOutArgumentConverter.cs
- LabelDesigner.cs
- LayoutManager.cs
- Rfc2898DeriveBytes.cs
- DbDataRecord.cs
- PhysicalOps.cs
- LockRecursionException.cs
- PieceDirectory.cs
- EncoderBestFitFallback.cs
- ISO2022Encoding.cs
- AnimationClockResource.cs
- TreeView.cs
- ShapeTypeface.cs
- CodeTypeConstructor.cs
- ToolStripDropDownItem.cs
- NegotiateStream.cs
- EdmToObjectNamespaceMap.cs
- RandomNumberGenerator.cs
- HideDisabledControlAdapter.cs
- XmlSchemaImporter.cs
- InternalPolicyElement.cs
- HeaderUtility.cs
- SpeechAudioFormatInfo.cs
- DiscardableAttribute.cs
- InternalBufferOverflowException.cs
- storepermission.cs
- EventLogEntryCollection.cs
- XPathAxisIterator.cs