Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / ButtonInternal / RadioButtonPopupAdapter.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartsSection.cs
- SemanticResultKey.cs
- DrawToolTipEventArgs.cs
- ReliableSession.cs
- AttachedPropertyBrowsableWhenAttributePresentAttribute.cs
- ZipIOExtraFieldZip64Element.cs
- GridViewEditEventArgs.cs
- SecurityContextSecurityTokenResolver.cs
- MouseEventArgs.cs
- DbMetaDataCollectionNames.cs
- TrackingExtract.cs
- _HeaderInfo.cs
- InternalRelationshipCollection.cs
- ProfileService.cs
- SettingsSection.cs
- TargetInvocationException.cs
- CodeIterationStatement.cs
- SendMailErrorEventArgs.cs
- ConvertersCollection.cs
- CodeEntryPointMethod.cs
- CodeCatchClauseCollection.cs
- XmlChildNodes.cs
- EditorPartChrome.cs
- BamlRecordReader.cs
- AsyncStreamReader.cs
- _NestedMultipleAsyncResult.cs
- TypeHelpers.cs
- SoapReflectionImporter.cs
- SHA1.cs
- SizeConverter.cs
- XmlLanguage.cs
- XmlProcessingInstruction.cs
- TreeChangeInfo.cs
- FamilyMap.cs
- NextPreviousPagerField.cs
- Command.cs
- DispatcherTimer.cs
- HttpListenerRequest.cs
- CodeSnippetExpression.cs
- MsdtcClusterUtils.cs
- SystemIPGlobalStatistics.cs
- MatrixTransform.cs
- FileDialog.cs
- UIElement3D.cs
- SecurityTokenAttachmentMode.cs
- TypefaceCollection.cs
- Line.cs
- Profiler.cs
- TraceListeners.cs
- DataControlCommands.cs
- ScaleTransform.cs
- MouseGesture.cs
- EntityTemplateFactory.cs
- ArgumentFixer.cs
- HtmlGenericControl.cs
- FilePrompt.cs
- Identifier.cs
- SoundPlayer.cs
- ShadowGlyph.cs
- DataSourceCollectionBase.cs
- QilGeneratorEnv.cs
- TaskFileService.cs
- CircleHotSpot.cs
- KnownBoxes.cs
- DbCommandTree.cs
- ProfileServiceManager.cs
- VideoDrawing.cs
- FileDocument.cs
- COMException.cs
- AlignmentXValidation.cs
- SafeSystemMetrics.cs
- mediaeventshelper.cs
- TextRangeEdit.cs
- safelink.cs
- XhtmlBasicObjectListAdapter.cs
- CompilerInfo.cs
- LinkedResource.cs
- ErrorWrapper.cs
- EventHandlersStore.cs
- coordinatorscratchpad.cs
- StartUpEventArgs.cs
- SelectionPattern.cs
- SinglePageViewer.cs
- Transform3DGroup.cs
- CommandExpr.cs
- dataprotectionpermissionattribute.cs
- NetworkStream.cs
- TdsParameterSetter.cs
- WorkflowPersistenceContext.cs
- TableRowCollection.cs
- FontDialog.cs
- Thread.cs
- BCLDebug.cs
- LiteralLink.cs
- BitmapDecoder.cs
- Overlapped.cs
- Attribute.cs
- BitmapSource.cs
- HtmlShim.cs
- ConfigurationPropertyAttribute.cs