Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / WinForms / Managed / System / WinForms / ButtonInternal / RadioButtonFlatAdapter.cs / 1 / RadioButtonFlatAdapter.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 RadioButtonFlatAdapter : RadioButtonBaseAdapter { protected const int flatCheckSize = 12; internal RadioButtonFlatAdapter(ButtonBase control) : base(control) {} internal override void PaintDown(PaintEventArgs e, CheckState state) { if (Control.Appearance == Appearance.Button) { ButtonFlatAdapter adapter = new ButtonFlatAdapter(Control); adapter.PaintDown(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); 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) { ButtonFlatAdapter adapter = new ButtonFlatAdapter(Control); adapter.PaintOver(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); 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) { ButtonFlatAdapter adapter = new ButtonFlatAdapter(Control); adapter.PaintUp(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); 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); } } 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); PaintField(e, layout, colors, checkColor, true); } #region Layout protected override ButtonBaseAdapter CreateButtonAdapter() { return new ButtonFlatAdapter(Control); } // RadioButtonPopupLayout also uses this layout for down and over 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 RadioButtonFlatAdapter : RadioButtonBaseAdapter { protected const int flatCheckSize = 12; internal RadioButtonFlatAdapter(ButtonBase control) : base(control) {} internal override void PaintDown(PaintEventArgs e, CheckState state) { if (Control.Appearance == Appearance.Button) { ButtonFlatAdapter adapter = new ButtonFlatAdapter(Control); adapter.PaintDown(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); 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) { ButtonFlatAdapter adapter = new ButtonFlatAdapter(Control); adapter.PaintOver(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); 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) { ButtonFlatAdapter adapter = new ButtonFlatAdapter(Control); adapter.PaintUp(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); 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); } } 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); PaintField(e, layout, colors, checkColor, true); } #region Layout protected override ButtonBaseAdapter CreateButtonAdapter() { return new ButtonFlatAdapter(Control); } // RadioButtonPopupLayout also uses this layout for down and over 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
- DATA_BLOB.cs
- BrushValueSerializer.cs
- OutKeywords.cs
- VersionedStream.cs
- MatrixAnimationBase.cs
- RegexTypeEditor.cs
- ItemsChangedEventArgs.cs
- DataGridViewAutoSizeModeEventArgs.cs
- ResponseBodyWriter.cs
- Point3DIndependentAnimationStorage.cs
- QilIterator.cs
- TextTreeExtractElementUndoUnit.cs
- ToolStripDesigner.cs
- MutexSecurity.cs
- AddressAccessDeniedException.cs
- ListView.cs
- ClickablePoint.cs
- GlyphShapingProperties.cs
- RuntimeConfig.cs
- NavigationPropertyAccessor.cs
- CoreSwitches.cs
- RectIndependentAnimationStorage.cs
- WebBrowsableAttribute.cs
- Itemizer.cs
- CodeDefaultValueExpression.cs
- StylusEditingBehavior.cs
- ObjectToIdCache.cs
- DispatchRuntime.cs
- HttpProfileBase.cs
- FrameworkElementAutomationPeer.cs
- CompilationPass2TaskInternal.cs
- SHA1.cs
- Lease.cs
- XmlDomTextWriter.cs
- _WebProxyDataBuilder.cs
- UIElementIsland.cs
- HttpException.cs
- FlatButtonAppearance.cs
- RSAOAEPKeyExchangeFormatter.cs
- SqlRowUpdatingEvent.cs
- MD5CryptoServiceProvider.cs
- MainMenu.cs
- EventPropertyMap.cs
- HostingEnvironmentException.cs
- PassportPrincipal.cs
- DecimalConstantAttribute.cs
- WasAdminWrapper.cs
- TextBounds.cs
- PointHitTestParameters.cs
- StandardToolWindows.cs
- HwndSourceKeyboardInputSite.cs
- BoundPropertyEntry.cs
- UnsafePeerToPeerMethods.cs
- UTF32Encoding.cs
- LabelLiteral.cs
- PointAnimationBase.cs
- InplaceBitmapMetadataWriter.cs
- ObjectDataSourceStatusEventArgs.cs
- NegationPusher.cs
- WindowsScrollBar.cs
- EmptyReadOnlyDictionaryInternal.cs
- ConstrainedDataObject.cs
- XmlTextReaderImplHelpers.cs
- DataGridTextBoxColumn.cs
- XmlException.cs
- MediaElement.cs
- HttpApplication.cs
- Int32.cs
- ToolStripComboBox.cs
- ZipIOExtraFieldZip64Element.cs
- CopyAction.cs
- PropertyFilterAttribute.cs
- Selection.cs
- CounterSample.cs
- DropDownList.cs
- BinHexEncoder.cs
- AutomationEventArgs.cs
- SpanIndex.cs
- TraceContextRecord.cs
- HttpContext.cs
- XmlHierarchyData.cs
- ServiceDesigner.cs
- __Error.cs
- BlobPersonalizationState.cs
- LeaseManager.cs
- FileUtil.cs
- ImageListImage.cs
- HtmlForm.cs
- AuthorizationPolicyTypeElementCollection.cs
- Configuration.cs
- ResourceManager.cs
- CssStyleCollection.cs
- MsmqAppDomainProtocolHandler.cs
- WarningException.cs
- FillErrorEventArgs.cs
- ImageBrush.cs
- DefinitionUpdate.cs
- WebPartConnection.cs
- ItemCollection.cs
- MediaCommands.cs