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 / 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. // //----------------------------------------------------------------------------- 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
- URLAttribute.cs
- RectAnimationClockResource.cs
- FlowLayout.cs
- DataGridBoolColumn.cs
- TextBox.cs
- WebDisplayNameAttribute.cs
- Range.cs
- WindowsContainer.cs
- ServiceElementCollection.cs
- AutomationIdentifierGuids.cs
- VerificationAttribute.cs
- TableCellCollection.cs
- SweepDirectionValidation.cs
- DataGridViewCellStyleChangedEventArgs.cs
- ArrayWithOffset.cs
- TimeZoneInfo.cs
- MetadataException.cs
- BitStream.cs
- SqlDataSourceAdvancedOptionsForm.cs
- WmfPlaceableFileHeader.cs
- VideoDrawing.cs
- TextBoxView.cs
- ScriptComponentDescriptor.cs
- Rect3D.cs
- BrowserCapabilitiesCompiler.cs
- StringAnimationBase.cs
- ResourceReferenceKeyNotFoundException.cs
- EnumerableRowCollectionExtensions.cs
- Classification.cs
- Button.cs
- DockingAttribute.cs
- DefaultProfileManager.cs
- DocComment.cs
- PartitionResolver.cs
- EncryptedReference.cs
- CryptoConfig.cs
- SystemMulticastIPAddressInformation.cs
- InlineCollection.cs
- WsdlHelpGeneratorElement.cs
- Matrix3DConverter.cs
- Converter.cs
- CheckedListBox.cs
- ColorInterpolationModeValidation.cs
- ProviderIncompatibleException.cs
- SQLMoney.cs
- DataGridViewCell.cs
- DataGridrowEditEndingEventArgs.cs
- XmlCharCheckingReader.cs
- PenLineCapValidation.cs
- TokenBasedSetEnumerator.cs
- IpcChannelHelper.cs
- SR.Designer.cs
- CodeGenerator.cs
- FileEnumerator.cs
- ToolStripMenuItem.cs
- TypeRestriction.cs
- ResourceCategoryAttribute.cs
- SettingsSavedEventArgs.cs
- CryptoConfig.cs
- tibetanshape.cs
- EngineSiteSapi.cs
- TextBoxRenderer.cs
- MetricEntry.cs
- BrushValueSerializer.cs
- DbConnectionPoolGroupProviderInfo.cs
- ShaderEffect.cs
- DebugView.cs
- PointAnimationUsingPath.cs
- EmissiveMaterial.cs
- QuaternionRotation3D.cs
- SqlDataSource.cs
- ListViewDesigner.cs
- XmlSchemaAny.cs
- RuntimeHelpers.cs
- DirectionalLight.cs
- SecurityState.cs
- AuthenticatedStream.cs
- DbProviderServices.cs
- CommandID.cs
- InputLangChangeEvent.cs
- CommandManager.cs
- Psha1DerivedKeyGenerator.cs
- ToolstripProfessionalRenderer.cs
- SynchronizedPool.cs
- HitTestParameters3D.cs
- GridPattern.cs
- GeneratedContractType.cs
- Cell.cs
- _SingleItemRequestCache.cs
- AllMembershipCondition.cs
- coordinatorscratchpad.cs
- TableAdapterManagerHelper.cs
- XPathConvert.cs
- MarkupCompiler.cs
- EncoderBestFitFallback.cs
- SectionXmlInfo.cs
- NativeDirectoryServicesQueryAPIs.cs
- Lookup.cs
- InstanceData.cs
- Property.cs