Code:
/ FX-1434 / FX-1434 / 1.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
- _Semaphore.cs
- DiffuseMaterial.cs
- ParserHooks.cs
- SettingsSection.cs
- HtmlTableCellCollection.cs
- HtmlFormParameterReader.cs
- ToolBarOverflowPanel.cs
- BinaryHeap.cs
- DbExpressionBuilder.cs
- XPathSelectionIterator.cs
- HttpDictionary.cs
- OutputCacheProfile.cs
- DataErrorValidationRule.cs
- BuildProviderInstallComponent.cs
- Thickness.cs
- EncoderExceptionFallback.cs
- KeyValueSerializer.cs
- Int16Storage.cs
- MatrixAnimationUsingKeyFrames.cs
- ImageEditor.cs
- TextViewBase.cs
- JavaScriptString.cs
- SQLUtility.cs
- MachineKeySection.cs
- SystemIPInterfaceStatistics.cs
- ContentType.cs
- Metafile.cs
- ContextMenuStripGroupCollection.cs
- RC2CryptoServiceProvider.cs
- BindableTemplateBuilder.cs
- DesignerWidgets.cs
- XhtmlBasicSelectionListAdapter.cs
- XmlLanguage.cs
- CompoundFileStorageReference.cs
- SoapExtensionTypeElementCollection.cs
- PersistChildrenAttribute.cs
- LocalizationParserHooks.cs
- DateBoldEvent.cs
- InternalCache.cs
- ThreadSafeMessageFilterTable.cs
- CmsInterop.cs
- ProcessInputEventArgs.cs
- Deflater.cs
- TimelineClockCollection.cs
- String.cs
- ContextMenu.cs
- WindowsTreeView.cs
- _OverlappedAsyncResult.cs
- Html32TextWriter.cs
- HttpWebRequestElement.cs
- TemplatedAdorner.cs
- TranslateTransform3D.cs
- PolicyStatement.cs
- AndCondition.cs
- DataServiceQuery.cs
- SqlStream.cs
- SystemInfo.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- BuilderPropertyEntry.cs
- CancelEventArgs.cs
- ReadOnlyNameValueCollection.cs
- SrgsText.cs
- PreloadHost.cs
- XmlNodeChangedEventArgs.cs
- TimelineClockCollection.cs
- EventMappingSettingsCollection.cs
- RouteValueDictionary.cs
- DropTarget.cs
- TextClipboardData.cs
- CompositeCollectionView.cs
- EasingKeyFrames.cs
- DateRangeEvent.cs
- SHA512.cs
- WebControlsSection.cs
- ScalarRestriction.cs
- ObfuscateAssemblyAttribute.cs
- DrawingContextWalker.cs
- HitTestParameters3D.cs
- XMLUtil.cs
- LoginCancelEventArgs.cs
- Rotation3DAnimation.cs
- IdentityManager.cs
- FixedPage.cs
- UntypedNullExpression.cs
- SelectionItemProviderWrapper.cs
- Themes.cs
- CaseInsensitiveOrdinalStringComparer.cs
- PrintPreviewDialog.cs
- DocumentGridContextMenu.cs
- SafeHandle.cs
- LogLogRecordEnumerator.cs
- SiteMapNodeItem.cs
- ExtenderControl.cs
- ApplicationHost.cs
- DataGridViewBindingCompleteEventArgs.cs
- Line.cs
- WebHttpBindingElement.cs
- RawAppCommandInputReport.cs
- SqlBulkCopyColumnMappingCollection.cs
- WebHttpBinding.cs