Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EntryIndex.cs
- ByteStorage.cs
- FormConverter.cs
- NumericExpr.cs
- BaseTemplateBuildProvider.cs
- AspCompat.cs
- OutputCacheProfileCollection.cs
- BindingExpressionUncommonField.cs
- Bezier.cs
- CustomSignedXml.cs
- ParameterSubsegment.cs
- CreateUserWizardStep.cs
- UITypeEditor.cs
- DESCryptoServiceProvider.cs
- XmlBinaryWriterSession.cs
- loginstatus.cs
- DbMetaDataFactory.cs
- XmlSchemaSimpleContentRestriction.cs
- RelOps.cs
- UnsafeNativeMethodsMilCoreApi.cs
- Privilege.cs
- LinkedResourceCollection.cs
- EpmHelper.cs
- IgnoreFileBuildProvider.cs
- SecureConversationVersion.cs
- CorrelationManager.cs
- AdapterUtil.cs
- graph.cs
- Assembly.cs
- BitStack.cs
- AccessControlList.cs
- LazyTextWriterCreator.cs
- HtmlEmptyTagControlBuilder.cs
- MarginCollapsingState.cs
- DoubleIndependentAnimationStorage.cs
- EntityDataSourceChangingEventArgs.cs
- DtrList.cs
- EtwTrace.cs
- SQLInt64.cs
- ColumnResult.cs
- FormViewCommandEventArgs.cs
- VectorValueSerializer.cs
- PenThreadPool.cs
- DllNotFoundException.cs
- TemplateControlCodeDomTreeGenerator.cs
- CodeArgumentReferenceExpression.cs
- CacheAxisQuery.cs
- MorphHelper.cs
- MailHeaderInfo.cs
- DataGridViewCellCollection.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- AsymmetricSignatureDeformatter.cs
- RegexStringValidator.cs
- BeginSelectCardRequest.cs
- COSERVERINFO.cs
- SignedXml.cs
- ComboBoxItem.cs
- CurrencyManager.cs
- DesignerObject.cs
- InstanceCompleteException.cs
- StreamWriter.cs
- WindowsTooltip.cs
- Control.cs
- DocumentGridContextMenu.cs
- SqlUserDefinedAggregateAttribute.cs
- TypeUtils.cs
- ProviderManager.cs
- ResourceSetExpression.cs
- SqlCommand.cs
- SqlDelegatedTransaction.cs
- ExceptionUtil.cs
- XmlUnspecifiedAttribute.cs
- SiteIdentityPermission.cs
- ControlPaint.cs
- sortedlist.cs
- TranslateTransform3D.cs
- PresentationTraceSources.cs
- ContentFilePart.cs
- HtmlElement.cs
- CountAggregationOperator.cs
- ConditionCollection.cs
- BasicBrowserDialog.cs
- AutoGeneratedFieldProperties.cs
- DeflateStream.cs
- RuntimeHelpers.cs
- DataColumnPropertyDescriptor.cs
- InternalsVisibleToAttribute.cs
- PassportAuthentication.cs
- Graph.cs
- XmlNotation.cs
- CheckBox.cs
- _AutoWebProxyScriptHelper.cs
- RuleSetDialog.cs
- CornerRadiusConverter.cs
- RouteParameter.cs
- MetadataArtifactLoaderResource.cs
- Ref.cs
- SqlCacheDependencyDatabase.cs
- CalendarDesigner.cs
- DataObjectEventArgs.cs