Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StyleBamlTreeBuilder.cs
- ToolStrip.cs
- Typeface.cs
- UserNameServiceElement.cs
- SqlError.cs
- KeyConstraint.cs
- ToolStripMenuItemDesigner.cs
- XmlDigitalSignatureProcessor.cs
- _NestedMultipleAsyncResult.cs
- InvokeMethodActivityDesigner.cs
- DiscoveryMessageSequence.cs
- Pair.cs
- EmbeddedObject.cs
- CorrelationManager.cs
- CompilerWrapper.cs
- DataGrid.cs
- DataGridCellItemAutomationPeer.cs
- MediaPlayerState.cs
- FlowDocumentPage.cs
- PropagatorResult.cs
- PointIndependentAnimationStorage.cs
- MenuAutoFormat.cs
- Vector3D.cs
- DbQueryCommandTree.cs
- OracleSqlParser.cs
- filewebrequest.cs
- SplineKeyFrames.cs
- autovalidator.cs
- ProxyAttribute.cs
- HostedHttpTransportManager.cs
- Help.cs
- RuleSettings.cs
- DesignerView.xaml.cs
- XPathException.cs
- ContainerFilterService.cs
- ManagementObjectCollection.cs
- CustomPopupPlacement.cs
- FormViewPageEventArgs.cs
- FatalException.cs
- filewebresponse.cs
- TemplateXamlParser.cs
- SettingsAttributes.cs
- AnimationLayer.cs
- XMLSyntaxException.cs
- SystemGatewayIPAddressInformation.cs
- EntityParameterCollection.cs
- Columns.cs
- ViewManager.cs
- VerificationException.cs
- ManifestResourceInfo.cs
- X509RawDataKeyIdentifierClause.cs
- Matrix3D.cs
- DockingAttribute.cs
- ValidationSummary.cs
- FileReader.cs
- UserPreferenceChangingEventArgs.cs
- RemoteWebConfigurationHostServer.cs
- AnnotationResource.cs
- InvalidateEvent.cs
- TableSectionStyle.cs
- HtmlUtf8RawTextWriter.cs
- MobileUITypeEditor.cs
- CodeDirectionExpression.cs
- SmiRecordBuffer.cs
- CollectionViewSource.cs
- StylusLogic.cs
- SortDescriptionCollection.cs
- ExceptionCollection.cs
- LocatorGroup.cs
- AssemblyUtil.cs
- BezierSegment.cs
- DoubleKeyFrameCollection.cs
- DefaultAutoFieldGenerator.cs
- ServiceNotStartedException.cs
- UpdateManifestForBrowserApplication.cs
- xml.cs
- RelationshipWrapper.cs
- DataGridViewTextBoxEditingControl.cs
- datacache.cs
- DefaultCompensation.cs
- TargetInvocationException.cs
- GridViewRowEventArgs.cs
- XmlSignatureProperties.cs
- ProcessHostServerConfig.cs
- PolicyValidationException.cs
- DropDownButton.cs
- Rfc2898DeriveBytes.cs
- DbParameterCollection.cs
- MethodRental.cs
- Asn1IntegerConverter.cs
- ClientFormsIdentity.cs
- SourceSwitch.cs
- TabletDeviceInfo.cs
- LogAppendAsyncResult.cs
- SharedConnectionWorkflowTransactionService.cs
- SqlUtil.cs
- RepeatBehavior.cs
- VSWCFServiceContractGenerator.cs
- Stackframe.cs
- Hex.cs