Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / ButtonInternal / CheckBoxFlatAdapter.cs / 1 / CheckBoxFlatAdapter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.ButtonInternal { using System; using System.Diagnostics; using System.Drawing; using System.Drawing.Drawing2D; using System.Drawing.Imaging; using System.Drawing.Text; using System.Windows.Forms; internal class CheckBoxFlatAdapter : CheckBoxBaseAdapter { internal CheckBoxFlatAdapter(ButtonBase control) : base(control) {} internal override void PaintDown(PaintEventArgs e, CheckState state) { if (Control.Appearance == Appearance.Button) { ButtonAdapter.PaintDown(e, Control.CheckState); return; } ColorData colors = PaintFlatRender(e.Graphics).Calculate(); if (Control.Enabled) { PaintFlatWorker(e, colors.windowText, colors.highlight, colors.windowFrame, colors); } else { PaintFlatWorker(e, colors.buttonShadow, colors.buttonFace, colors.buttonShadow, colors); } } internal override void PaintOver(PaintEventArgs e, CheckState state) { if (Control.Appearance == Appearance.Button) { ButtonAdapter.PaintOver(e, Control.CheckState); return; } ColorData colors = PaintFlatRender(e.Graphics).Calculate(); if (Control.Enabled) { PaintFlatWorker(e, colors.windowText, colors.lowHighlight, colors.windowFrame, colors); } else { PaintFlatWorker(e, colors.buttonShadow, colors.buttonFace, colors.buttonShadow, colors); } } internal override void PaintUp(PaintEventArgs e, CheckState state) { if (Control.Appearance == Appearance.Button) { ButtonAdapter.PaintUp(e, Control.CheckState); return; } ColorData colors = PaintFlatRender(e.Graphics).Calculate(); if (Control.Enabled) { PaintFlatWorker(e, colors.windowText, colors.highlight, colors.windowFrame, colors); } else { PaintFlatWorker(e, colors.buttonShadow, colors.buttonFace, colors.buttonShadow, colors); } } private void PaintFlatWorker(PaintEventArgs e, Color checkColor, Color checkBackground, Color checkBorder, ColorData colors) { System.Drawing.Graphics g = e.Graphics; LayoutData layout = Layout(e).Layout(); PaintButtonBackground(e, Control.ClientRectangle, null); PaintImage(e, layout); DrawCheckFlat(e, layout, checkColor, colors.options.highContrast ? colors.buttonFace : checkBackground, checkBorder, colors); PaintField(e, layout, colors, checkColor, true); } #region Layout private new ButtonFlatAdapter ButtonAdapter { get { return ((ButtonFlatAdapter)base.ButtonAdapter); } } protected override ButtonBaseAdapter CreateButtonAdapter() { return new ButtonFlatAdapter(Control); } protected override LayoutOptions Layout(PaintEventArgs e) { LayoutOptions layout = CommonLayout(); layout.checkSize = flatCheckSize; layout.shadowedText = false; return layout; } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- LinqDataSourceStatusEventArgs.cs
- OleDbPropertySetGuid.cs
- CompiledQueryCacheEntry.cs
- HttpWebRequest.cs
- SqlCrossApplyToCrossJoin.cs
- ImageCreator.cs
- ParserStreamGeometryContext.cs
- SByte.cs
- ModelMemberCollection.cs
- PersonalizableAttribute.cs
- WebServiceMethodData.cs
- DesignerAdapterAttribute.cs
- XmlReaderDelegator.cs
- GridViewSelectEventArgs.cs
- TextModifier.cs
- TimeZone.cs
- DocumentGrid.cs
- SymmetricCryptoHandle.cs
- Transform3D.cs
- BookmarkResumptionRecord.cs
- SchemaTypeEmitter.cs
- DesignerResources.cs
- XmlSchemaExporter.cs
- Stylus.cs
- NetworkCredential.cs
- DataControlImageButton.cs
- CryptographicAttribute.cs
- StorageMappingItemCollection.cs
- DataServiceBuildProvider.cs
- TabControl.cs
- DataControlButton.cs
- ResourceDictionaryCollection.cs
- XpsFilter.cs
- ParallelLoopState.cs
- SettingsPropertyValue.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- CacheMode.cs
- TransformerTypeCollection.cs
- ChannelServices.cs
- WebScriptEnablingBehavior.cs
- TlsSspiNegotiation.cs
- GridViewRowCollection.cs
- TextAutomationPeer.cs
- XmlILModule.cs
- StringComparer.cs
- CollectionEditVerbManager.cs
- JournalNavigationScope.cs
- SqlNodeAnnotation.cs
- SHA256CryptoServiceProvider.cs
- RegexMatch.cs
- CodeIdentifier.cs
- RectangleGeometry.cs
- BaseProcessProtocolHandler.cs
- DynamicRenderer.cs
- WebBrowserEvent.cs
- CellTreeNodeVisitors.cs
- ConfigurationValidatorBase.cs
- EpmContentDeSerializerBase.cs
- AspCompat.cs
- TreeView.cs
- FileReservationCollection.cs
- WebDisplayNameAttribute.cs
- HeaderCollection.cs
- Control.cs
- WrappedReader.cs
- Int16Storage.cs
- FormParameter.cs
- HostProtectionException.cs
- CompilationUtil.cs
- RtfControls.cs
- CodeDelegateCreateExpression.cs
- DrawingContext.cs
- QilFactory.cs
- QuaternionRotation3D.cs
- RouteItem.cs
- ClientRuntimeConfig.cs
- RegistryKey.cs
- WebPartActionVerb.cs
- StrongTypingException.cs
- AnimationClockResource.cs
- RegionIterator.cs
- URI.cs
- X509CertificateCollection.cs
- MediaScriptCommandRoutedEventArgs.cs
- BlurEffect.cs
- StaticExtension.cs
- DataSourceView.cs
- RefreshPropertiesAttribute.cs
- StringFreezingAttribute.cs
- AudioFileOut.cs
- ControlOperationBehavior.cs
- DesignerAttribute.cs
- WebPartTransformerCollection.cs
- WinFormsUtils.cs
- SqlConnection.cs
- DataGridHelper.cs
- PrintPreviewDialog.cs
- HtmlElement.cs
- CompiledIdentityConstraint.cs
- GrammarBuilderBase.cs