Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / TextBoxRenderer.cs / 1 / TextBoxRenderer.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 TextBoxRenderer { //Make this per-thread, so that different threads can safely use these methods. [ThreadStatic] private static VisualStyleRenderer visualStyleRenderer = null; private static readonly VisualStyleElement TextBoxElement = VisualStyleElement.TextBox.TextEdit.Normal; //cannot instantiate private TextBoxRenderer() { } ////// This is a rendering class for the TextBox control. /// ////// /// public static bool IsSupported { get { return VisualStyleRenderer.IsSupported; // no downlevel support } } private static void DrawBackground(Graphics g, Rectangle bounds, TextBoxState state) { visualStyleRenderer.DrawBackground(g, bounds); if (state != TextBoxState.Disabled) { Color windowColor = visualStyleRenderer.GetColor(ColorProperty.FillColor); if (windowColor != SystemColors.Window) { Rectangle fillRect = visualStyleRenderer.GetBackgroundContentRectangle(g, bounds); //then we need to re-fill the background. g.FillRectangle(new SolidBrush(SystemColors.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, TextBoxState state) { InitializeRenderer((int)state); DrawBackground(g, bounds, state); } ////// Renders a TextBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string textBoxText, Font font, TextBoxState state) { DrawTextBox(g, bounds, textBoxText, font, TextFormatFlags.TextBoxControl, state); } ////// Renders a TextBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string textBoxText, Font font, Rectangle textBounds, TextBoxState state) { DrawTextBox(g, bounds, textBoxText, font, textBounds, TextFormatFlags.TextBoxControl, state); } ////// Renders a TextBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string textBoxText, Font font, TextFormatFlags flags, TextBoxState state) { InitializeRenderer((int)state); Rectangle textBounds = visualStyleRenderer.GetBackgroundContentRectangle(g, bounds); textBounds.Inflate(-2, -2); DrawTextBox(g, bounds, textBoxText, font, textBounds, flags, state); } ////// Renders a TextBox control. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawTextBox(Graphics g, Rectangle bounds, string textBoxText, Font font, Rectangle textBounds, TextFormatFlags flags, TextBoxState state) { InitializeRenderer((int)state); DrawBackground(g, bounds, state); Color textColor = visualStyleRenderer.GetColor(ColorProperty.TextColor); TextRenderer.DrawText(g, textBoxText, font, textBounds, textColor, flags); } private static void InitializeRenderer(int state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(TextBoxElement.ClassName, TextBoxElement.Part, state); } else { visualStyleRenderer.SetParameters(TextBoxElement.ClassName, TextBoxElement.Part, state); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Renders a TextBox control. /// ///// 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 TextBoxRenderer { //Make this per-thread, so that different threads can safely use these methods. [ThreadStatic] private static VisualStyleRenderer visualStyleRenderer = null; private static readonly VisualStyleElement TextBoxElement = VisualStyleElement.TextBox.TextEdit.Normal; //cannot instantiate private TextBoxRenderer() { } ////// This is a rendering class for the TextBox control. /// ////// /// public static bool IsSupported { get { return VisualStyleRenderer.IsSupported; // no downlevel support } } private static void DrawBackground(Graphics g, Rectangle bounds, TextBoxState state) { visualStyleRenderer.DrawBackground(g, bounds); if (state != TextBoxState.Disabled) { Color windowColor = visualStyleRenderer.GetColor(ColorProperty.FillColor); if (windowColor != SystemColors.Window) { Rectangle fillRect = visualStyleRenderer.GetBackgroundContentRectangle(g, bounds); //then we need to re-fill the background. g.FillRectangle(new SolidBrush(SystemColors.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, TextBoxState state) { InitializeRenderer((int)state); DrawBackground(g, bounds, state); } ////// Renders a TextBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string textBoxText, Font font, TextBoxState state) { DrawTextBox(g, bounds, textBoxText, font, TextFormatFlags.TextBoxControl, state); } ////// Renders a TextBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string textBoxText, Font font, Rectangle textBounds, TextBoxState state) { DrawTextBox(g, bounds, textBoxText, font, textBounds, TextFormatFlags.TextBoxControl, state); } ////// Renders a TextBox control. /// ////// /// public static void DrawTextBox(Graphics g, Rectangle bounds, string textBoxText, Font font, TextFormatFlags flags, TextBoxState state) { InitializeRenderer((int)state); Rectangle textBounds = visualStyleRenderer.GetBackgroundContentRectangle(g, bounds); textBounds.Inflate(-2, -2); DrawTextBox(g, bounds, textBoxText, font, textBounds, flags, state); } ////// Renders a TextBox control. /// ////// /// [ SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters") // Using Graphics instead of IDeviceContext intentionally ] public static void DrawTextBox(Graphics g, Rectangle bounds, string textBoxText, Font font, Rectangle textBounds, TextFormatFlags flags, TextBoxState state) { InitializeRenderer((int)state); DrawBackground(g, bounds, state); Color textColor = visualStyleRenderer.GetColor(ColorProperty.TextColor); TextRenderer.DrawText(g, textBoxText, font, textBounds, textColor, flags); } private static void InitializeRenderer(int state) { if (visualStyleRenderer == null) { visualStyleRenderer = new VisualStyleRenderer(TextBoxElement.ClassName, TextBoxElement.Part, state); } else { visualStyleRenderer.SetParameters(TextBoxElement.ClassName, TextBoxElement.Part, state); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Renders a TextBox control. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- dsa.cs
- MediaScriptCommandRoutedEventArgs.cs
- bidPrivateBase.cs
- DataServiceRequestException.cs
- TrackPointCollection.cs
- SQLCharsStorage.cs
- ToolboxItem.cs
- ScrollItemProviderWrapper.cs
- TransmissionStrategy.cs
- TemplateControlCodeDomTreeGenerator.cs
- XmlSchemaNotation.cs
- AlphabeticalEnumConverter.cs
- VersionedStreamOwner.cs
- XPathDocumentBuilder.cs
- ToolStripItemTextRenderEventArgs.cs
- StateMachineTimers.cs
- SequenceRangeCollection.cs
- ConstructorNeedsTagAttribute.cs
- DataService.cs
- EpmSourcePathSegment.cs
- RectAnimationClockResource.cs
- WebControlAdapter.cs
- TransformProviderWrapper.cs
- HttpVersion.cs
- PropertyDescriptorCollection.cs
- UTF8Encoding.cs
- SafeHandles.cs
- XmlAnyElementAttributes.cs
- EntityDesignerUtils.cs
- BlurEffect.cs
- AnimationClock.cs
- XmlTextReaderImplHelpers.cs
- DeobfuscatingStream.cs
- EntityContainerRelationshipSet.cs
- Vertex.cs
- JpegBitmapEncoder.cs
- ProgressBarBrushConverter.cs
- Decimal.cs
- FontNamesConverter.cs
- StringAnimationUsingKeyFrames.cs
- ClonableStack.cs
- HtmlElement.cs
- ScriptingWebServicesSectionGroup.cs
- NativeRightsManagementAPIsStructures.cs
- CommandField.cs
- ErrorRuntimeConfig.cs
- basevalidator.cs
- CriticalHandle.cs
- GenericWebPart.cs
- MDIClient.cs
- SqlDataSourceCommandEventArgs.cs
- ForceCopyBuildProvider.cs
- SamlAssertion.cs
- PagesChangedEventArgs.cs
- KeyGestureValueSerializer.cs
- CodeConditionStatement.cs
- HtmlElementErrorEventArgs.cs
- LocalizedNameDescriptionPair.cs
- FileDialog.cs
- QueueProcessor.cs
- GrammarBuilderPhrase.cs
- SqlInfoMessageEvent.cs
- IpcServerChannel.cs
- IdnElement.cs
- InlinedLocationReference.cs
- TimeSpanSecondsConverter.cs
- RegexTree.cs
- EntityDataSourceValidationException.cs
- DragEventArgs.cs
- UIElement3DAutomationPeer.cs
- TextServicesCompartment.cs
- InvokeMemberBinder.cs
- HttpServerProtocol.cs
- XPathBinder.cs
- SystemColors.cs
- SafeBuffer.cs
- EntityDataSourceWrapper.cs
- CheckedListBox.cs
- WebPartCloseVerb.cs
- EntityKeyElement.cs
- OleStrCAMarshaler.cs
- PortCache.cs
- BuildResult.cs
- HashHelper.cs
- StyleCollection.cs
- ReflectPropertyDescriptor.cs
- LeafCellTreeNode.cs
- TypeReference.cs
- TextMetrics.cs
- TreeViewEvent.cs
- FloaterBaseParaClient.cs
- ListViewSelectEventArgs.cs
- CodeVariableReferenceExpression.cs
- HeaderedContentControl.cs
- UICuesEvent.cs
- PackagePartCollection.cs
- QuaternionAnimation.cs
- ObjectSelectorEditor.cs
- XmlILModule.cs
- FocusTracker.cs