Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / ButtonInternal / CheckBoxFlatAdapter.cs / 1305376 / 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 = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics)); 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 = (int)(flatCheckSize * GetDpiScaleRatio(e.Graphics)); 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
- DataSourceConverter.cs
- StateMachineAction.cs
- ToolboxDataAttribute.cs
- ContactManager.cs
- LayoutEngine.cs
- QilDataSource.cs
- KeyPullup.cs
- SizeF.cs
- IResourceProvider.cs
- FormCollection.cs
- xdrvalidator.cs
- QuaternionValueSerializer.cs
- Pair.cs
- InputLanguageManager.cs
- Trigger.cs
- PageTheme.cs
- TextFindEngine.cs
- CqlWriter.cs
- KeyedCollection.cs
- ColumnMap.cs
- InternalBufferManager.cs
- GACIdentityPermission.cs
- XmlUtf8RawTextWriter.cs
- EntityKeyElement.cs
- BooleanFacetDescriptionElement.cs
- DataObjectFieldAttribute.cs
- ToolStripContentPanel.cs
- OutputScope.cs
- DodSequenceMerge.cs
- TypefaceCollection.cs
- MetadataExchangeBindings.cs
- ScriptHandlerFactory.cs
- FormatVersion.cs
- nulltextcontainer.cs
- GlyphInfoList.cs
- SqlServer2KCompatibilityAnnotation.cs
- BinHexEncoding.cs
- ResolveNameEventArgs.cs
- safelink.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- TabControl.cs
- NotSupportedException.cs
- HttpFileCollectionWrapper.cs
- Set.cs
- ObjectParameterCollection.cs
- WorkflowItemPresenter.cs
- Compensation.cs
- LayoutTableCell.cs
- PropertyDescriptor.cs
- LoginName.cs
- UInt32.cs
- WsdlServiceChannelBuilder.cs
- ContextBase.cs
- TextHidden.cs
- LayoutTableCell.cs
- PictureBox.cs
- SmtpReplyReaderFactory.cs
- StringAnimationUsingKeyFrames.cs
- DataGridColumnFloatingHeader.cs
- XamlFilter.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ListParaClient.cs
- _AuthenticationState.cs
- LinqDataSourceValidationException.cs
- CheckoutException.cs
- ParagraphVisual.cs
- ScriptComponentDescriptor.cs
- XmlILTrace.cs
- EditBehavior.cs
- AudienceUriMode.cs
- ValidationSummaryDesigner.cs
- ToolStripInSituService.cs
- Condition.cs
- AssemblyUtil.cs
- ModuleElement.cs
- NavigationPropertyEmitter.cs
- ConversionValidationRule.cs
- SystemDropShadowChrome.cs
- DummyDataSource.cs
- ArraySortHelper.cs
- PerformanceCounterLib.cs
- SoapReflectionImporter.cs
- IisNotInstalledException.cs
- CompilationSection.cs
- CodeCompileUnit.cs
- HashCryptoHandle.cs
- BitmapEffectCollection.cs
- COAUTHIDENTITY.cs
- SolidColorBrush.cs
- FilterQuery.cs
- NavigationProperty.cs
- dataprotectionpermission.cs
- HtmlInputCheckBox.cs
- SQLRoleProvider.cs
- PrintController.cs
- SafeEventLogWriteHandle.cs
- uribuilder.cs
- XmlReaderSettings.cs
- ValueCollectionParameterReader.cs
- _LoggingObject.cs