Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / WinForms / Managed / System / WinForms / ButtonInternal / RadioButtonPopupAdapter.cs / 1 / RadioButtonPopupAdapter.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 RadioButtonPopupAdapter : RadioButtonFlatAdapter { internal RadioButtonPopupAdapter(ButtonBase control) : base(control) {} internal override void PaintUp(PaintEventArgs e, CheckState state) { System.Drawing.Graphics g = e.Graphics; if (Control.Appearance == Appearance.Button) { ButtonPopupAdapter adapter = new ButtonPopupAdapter(Control); adapter.PaintUp(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); } else { ColorData colors = PaintPopupRender(e.Graphics).Calculate(); LayoutData layout = Layout(e).Layout(); PaintButtonBackground(e, Control.ClientRectangle, null); PaintImage(e, layout); DrawCheckBackgroundFlat(e, layout.checkBounds, colors.buttonShadow, colors.options.highContrast ? colors.buttonFace : colors.highlight, true); DrawCheckOnly(e, layout, colors.windowText, colors.highlight, true); PaintField(e, layout, colors, colors.windowText, true); } } internal override void PaintOver(PaintEventArgs e, CheckState state) { System.Drawing.Graphics g = e.Graphics; if (Control.Appearance == Appearance.Button) { ButtonPopupAdapter adapter = new ButtonPopupAdapter(Control); adapter.PaintOver(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); } else { ColorData colors = PaintPopupRender(e.Graphics).Calculate(); LayoutData layout = Layout(e).Layout(); PaintButtonBackground(e, Control.ClientRectangle, null); PaintImage(e, layout); DrawCheckBackground3DLite(e, layout.checkBounds, colors.windowText, colors.options.highContrast ? colors.buttonFace : colors.highlight, colors, true); DrawCheckOnly(e, layout, colors.windowText, colors.highlight, true); PaintField(e, layout, colors, colors.windowText, true); } } internal override void PaintDown(PaintEventArgs e, CheckState state) { System.Drawing.Graphics g = e.Graphics; if (Control.Appearance == Appearance.Button) { ButtonPopupAdapter adapter = new ButtonPopupAdapter(Control); adapter.PaintDown(e, Control.Checked ? CheckState.Checked : CheckState.Unchecked); } else { ColorData colors = PaintPopupRender(e.Graphics).Calculate(); LayoutData layout = Layout(e).Layout(); PaintButtonBackground(e, Control.ClientRectangle, null); PaintImage(e, layout); DrawCheckBackground3DLite(e, layout.checkBounds, colors.windowText, colors.highlight, colors, true); DrawCheckOnly(e, layout, colors.buttonShadow, colors.highlight, true); PaintField(e, layout, colors, colors.windowText, true); } } #region Layout protected override ButtonBaseAdapter CreateButtonAdapter() { return new ButtonPopupAdapter(Control); } protected override LayoutOptions Layout(PaintEventArgs e) { LayoutOptions layout = base.Layout(e); if (!Control.MouseIsDown && !Control.MouseIsOver) { layout.shadowedText = true; } 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
- RawStylusInputCustomDataList.cs
- InfoCardTrace.cs
- InputScopeManager.cs
- DelegatingTypeDescriptionProvider.cs
- RegistryExceptionHelper.cs
- GlyphRunDrawing.cs
- ClickablePoint.cs
- InfoCardSymmetricAlgorithm.cs
- QueryInterceptorAttribute.cs
- HttpProcessUtility.cs
- GenericAuthenticationEventArgs.cs
- FlatButtonAppearance.cs
- prompt.cs
- InternalDuplexBindingElement.cs
- TypeForwardedToAttribute.cs
- ApplicationServicesHostFactory.cs
- Stream.cs
- XmlFormatWriterGenerator.cs
- DetailsViewInsertedEventArgs.cs
- Int16Storage.cs
- EmptyEnumerator.cs
- FontInfo.cs
- ToolStripItemTextRenderEventArgs.cs
- HtmlGenericControl.cs
- DataRecord.cs
- RequiredAttributeAttribute.cs
- HttpWebRequestElement.cs
- SplitterPanel.cs
- ParserExtension.cs
- Transform3D.cs
- TextEditorParagraphs.cs
- TreeSet.cs
- CmsUtils.cs
- PeerCollaboration.cs
- XmlSchemaAnyAttribute.cs
- EqualityArray.cs
- NamespaceQuery.cs
- FilterableAttribute.cs
- CurrencyWrapper.cs
- DbExpressionRules.cs
- LogicalExpr.cs
- PageParserFilter.cs
- GraphicsContainer.cs
- WorkflowApplicationUnhandledExceptionEventArgs.cs
- TraceData.cs
- OdbcPermission.cs
- XPathDocument.cs
- LocationChangedEventArgs.cs
- DesignerCapabilities.cs
- TextDecoration.cs
- MouseBinding.cs
- ToolStripArrowRenderEventArgs.cs
- RadioButton.cs
- CssStyleCollection.cs
- ModelTypeConverter.cs
- DockingAttribute.cs
- PolicyManager.cs
- SiteMap.cs
- DataGridViewRowPrePaintEventArgs.cs
- AttachedAnnotation.cs
- TextAutomationPeer.cs
- DesignTimeVisibleAttribute.cs
- ProxyWebPartManager.cs
- SignatureResourcePool.cs
- TrustLevelCollection.cs
- CodeDomConfigurationHandler.cs
- WorkflowItemsPresenter.cs
- mda.cs
- Region.cs
- ListParaClient.cs
- InfoCardTraceRecord.cs
- XmlSchemaValidationException.cs
- Rect3DValueSerializer.cs
- ThreadStartException.cs
- Rijndael.cs
- TextWriterTraceListener.cs
- followingquery.cs
- BaseAsyncResult.cs
- ApplicationException.cs
- SamlDoNotCacheCondition.cs
- CheckBoxPopupAdapter.cs
- elementinformation.cs
- TreeNodeStyleCollection.cs
- SymbolTable.cs
- UnsafeNativeMethods.cs
- ParseNumbers.cs
- RoleManagerEventArgs.cs
- XPathNodeIterator.cs
- ReadOnlyPropertyMetadata.cs
- _BaseOverlappedAsyncResult.cs
- SortDescription.cs
- LineVisual.cs
- BinHexEncoder.cs
- MultipartIdentifier.cs
- ButtonBaseAdapter.cs
- MailDefinitionBodyFileNameEditor.cs
- WebAdminConfigurationHelper.cs
- ItemsControlAutomationPeer.cs
- SafeSecurityHandles.cs
- InheritanceContextChangedEventManager.cs