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
- GroupItem.cs
- DesignerOptionService.cs
- FlowThrottle.cs
- CompositeClientFormatter.cs
- SqlBuilder.cs
- AssociationSet.cs
- RIPEMD160Managed.cs
- ProcessHostServerConfig.cs
- DbConnectionFactory.cs
- GeneralTransform2DTo3D.cs
- cookie.cs
- VersionedStreamOwner.cs
- XomlSerializationHelpers.cs
- DataGridPageChangedEventArgs.cs
- XmlReflectionImporter.cs
- DirtyTextRange.cs
- ServiceChannelManager.cs
- ISSmlParser.cs
- PopupRoot.cs
- BoundField.cs
- BaseTransportHeaders.cs
- SqlCommand.cs
- JavaScriptString.cs
- ButtonField.cs
- FormViewDeletedEventArgs.cs
- Button.cs
- RelationshipEnd.cs
- DecimalAnimationBase.cs
- CodeMemberMethod.cs
- Scripts.cs
- DescendantOverDescendantQuery.cs
- CustomErrorsSectionWrapper.cs
- Enlistment.cs
- OracleMonthSpan.cs
- WebPageTraceListener.cs
- XmlExceptionHelper.cs
- ACE.cs
- SlipBehavior.cs
- ping.cs
- ApplicationGesture.cs
- BitStack.cs
- Zone.cs
- SelectionChangedEventArgs.cs
- SettingsAttributeDictionary.cs
- DataGridViewColumnHeaderCell.cs
- CellRelation.cs
- ValidationSummaryDesigner.cs
- BuilderPropertyEntry.cs
- DataListItemEventArgs.cs
- SoapHeaderAttribute.cs
- CompositeCollectionView.cs
- ListControlConvertEventArgs.cs
- WorkerRequest.cs
- RegularExpressionValidator.cs
- ScrollChrome.cs
- NestedContainer.cs
- CompilationUtil.cs
- PropertyChangingEventArgs.cs
- ResolveNextArgumentWorkItem.cs
- Run.cs
- FormatPage.cs
- PrtTicket_Editor.cs
- HtmlImage.cs
- CombinedGeometry.cs
- OdbcConnectionPoolProviderInfo.cs
- MergePropertyDescriptor.cs
- RichTextBox.cs
- FileClassifier.cs
- ObjectResult.cs
- CompareInfo.cs
- UIElement3D.cs
- AutomationAttributeInfo.cs
- Transform.cs
- SelectionListDesigner.cs
- DataGridViewImageColumn.cs
- SendOperation.cs
- FontFaceLayoutInfo.cs
- ResizeGrip.cs
- DataListItemCollection.cs
- ItemsControl.cs
- DynamicControlParameter.cs
- PathFigureCollectionConverter.cs
- MouseGestureValueSerializer.cs
- OutputCacheSection.cs
- StyleBamlRecordReader.cs
- CapabilitiesAssignment.cs
- Win32PrintDialog.cs
- BamlLocalizabilityResolver.cs
- TimeEnumHelper.cs
- ExtensibleClassFactory.cs
- MouseEvent.cs
- RightsManagementInformation.cs
- DbConnectionOptions.cs
- SecurityUtils.cs
- BreakRecordTable.cs
- PrivilegeNotHeldException.cs
- WebReferencesBuildProvider.cs
- BlobPersonalizationState.cs
- ShapingEngine.cs
- ToolboxItemAttribute.cs