Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / WinForms / Managed / System / WinForms / ButtonInternal / CheckBoxStandardAdapter.cs / 1 / CheckBoxStandardAdapter.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;
using System.Windows.Forms.Layout;
internal sealed class CheckBoxStandardAdapter : CheckBoxBaseAdapter {
internal CheckBoxStandardAdapter(ButtonBase control) : base(control) {}
internal override void PaintUp(PaintEventArgs e, CheckState state)
{
if (Control.Appearance == Appearance.Button) {
ButtonAdapter.PaintUp(e, Control.CheckState);
}
else {
ColorData colors = PaintRender(e.Graphics).Calculate();
LayoutData layout = Layout(e).Layout();
PaintButtonBackground(e, Control.ClientRectangle, null);
//minor adjustment to make sure the appearance is exactly the same as Win32 app.
int focusRectFixup = layout.focus.X & 0x1; // if it's odd, subtract one pixel for fixup.
if (!Application.RenderWithVisualStyles) {
focusRectFixup = 1 - focusRectFixup;
}
if (!layout.options.everettButtonCompat) {
layout.textBounds.Offset(-1, -1);
}
layout.imageBounds.Offset(-1, -1);
layout.focus.Offset(-(focusRectFixup+1), -2);
layout.focus.Width = layout.textBounds.Width + layout.imageBounds.Width - 1;
layout.focus.Intersect(layout.textBounds);
if( layout.options.textAlign != LayoutUtils.AnyLeft && layout.options.useCompatibleTextRendering && layout.options.font.Italic) {
// fixup for GDI+ text rendering. VSW#515164
layout.focus.Width += 2;
}
PaintImage(e, layout);
DrawCheckBox(e, layout);
PaintField(e, layout, colors, colors.windowText, true);
}
}
internal override void PaintDown(PaintEventArgs e, CheckState state) {
if (Control.Appearance == Appearance.Button) {
ButtonAdapter.PaintDown(e, Control.CheckState);
}
else {
PaintUp(e, state);
}
}
internal override void PaintOver(PaintEventArgs e, CheckState state) {
if (Control.Appearance == Appearance.Button) {
ButtonAdapter.PaintOver(e, Control.CheckState);
}
else {
PaintUp(e, state);
}
}
internal override Size GetPreferredSizeCore(Size proposedSize) {
if (Control.Appearance == Appearance.Button) {
ButtonStandardAdapter adapter = new ButtonStandardAdapter(Control);
return adapter.GetPreferredSizeCore(proposedSize);
}
else {
using (Graphics measurementGraphics = WindowsFormsUtils.CreateMeasurementGraphics()) {
using (PaintEventArgs pe = new PaintEventArgs(measurementGraphics, new Rectangle())) {
LayoutOptions options = Layout(pe);
return options.GetPreferredSizeCore(proposedSize);
}
}
}
}
#region Layout
private new ButtonStandardAdapter ButtonAdapter {
get {
return ((ButtonStandardAdapter)base.ButtonAdapter);
}
}
protected override ButtonBaseAdapter CreateButtonAdapter() {
return new ButtonStandardAdapter(Control);
}
protected override LayoutOptions Layout(PaintEventArgs e) {
LayoutOptions layout = CommonLayout();
layout.checkPaddingSize = 1;
layout.everettButtonCompat = !Application.RenderWithVisualStyles;
// VSWhidbey 420870
if (Application.RenderWithVisualStyles) {
using (Graphics g = WindowsFormsUtils.CreateMeasurementGraphics()) {
layout.checkSize = CheckBoxRenderer.GetGlyphSize(g, CheckBoxRenderer.ConvertFromButtonState(GetState(), true, Control.MouseIsOver)).Width;
}
}
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;
using System.Windows.Forms.Layout;
internal sealed class CheckBoxStandardAdapter : CheckBoxBaseAdapter {
internal CheckBoxStandardAdapter(ButtonBase control) : base(control) {}
internal override void PaintUp(PaintEventArgs e, CheckState state)
{
if (Control.Appearance == Appearance.Button) {
ButtonAdapter.PaintUp(e, Control.CheckState);
}
else {
ColorData colors = PaintRender(e.Graphics).Calculate();
LayoutData layout = Layout(e).Layout();
PaintButtonBackground(e, Control.ClientRectangle, null);
//minor adjustment to make sure the appearance is exactly the same as Win32 app.
int focusRectFixup = layout.focus.X & 0x1; // if it's odd, subtract one pixel for fixup.
if (!Application.RenderWithVisualStyles) {
focusRectFixup = 1 - focusRectFixup;
}
if (!layout.options.everettButtonCompat) {
layout.textBounds.Offset(-1, -1);
}
layout.imageBounds.Offset(-1, -1);
layout.focus.Offset(-(focusRectFixup+1), -2);
layout.focus.Width = layout.textBounds.Width + layout.imageBounds.Width - 1;
layout.focus.Intersect(layout.textBounds);
if( layout.options.textAlign != LayoutUtils.AnyLeft && layout.options.useCompatibleTextRendering && layout.options.font.Italic) {
// fixup for GDI+ text rendering. VSW#515164
layout.focus.Width += 2;
}
PaintImage(e, layout);
DrawCheckBox(e, layout);
PaintField(e, layout, colors, colors.windowText, true);
}
}
internal override void PaintDown(PaintEventArgs e, CheckState state) {
if (Control.Appearance == Appearance.Button) {
ButtonAdapter.PaintDown(e, Control.CheckState);
}
else {
PaintUp(e, state);
}
}
internal override void PaintOver(PaintEventArgs e, CheckState state) {
if (Control.Appearance == Appearance.Button) {
ButtonAdapter.PaintOver(e, Control.CheckState);
}
else {
PaintUp(e, state);
}
}
internal override Size GetPreferredSizeCore(Size proposedSize) {
if (Control.Appearance == Appearance.Button) {
ButtonStandardAdapter adapter = new ButtonStandardAdapter(Control);
return adapter.GetPreferredSizeCore(proposedSize);
}
else {
using (Graphics measurementGraphics = WindowsFormsUtils.CreateMeasurementGraphics()) {
using (PaintEventArgs pe = new PaintEventArgs(measurementGraphics, new Rectangle())) {
LayoutOptions options = Layout(pe);
return options.GetPreferredSizeCore(proposedSize);
}
}
}
}
#region Layout
private new ButtonStandardAdapter ButtonAdapter {
get {
return ((ButtonStandardAdapter)base.ButtonAdapter);
}
}
protected override ButtonBaseAdapter CreateButtonAdapter() {
return new ButtonStandardAdapter(Control);
}
protected override LayoutOptions Layout(PaintEventArgs e) {
LayoutOptions layout = CommonLayout();
layout.checkPaddingSize = 1;
layout.everettButtonCompat = !Application.RenderWithVisualStyles;
// VSWhidbey 420870
if (Application.RenderWithVisualStyles) {
using (Graphics g = WindowsFormsUtils.CreateMeasurementGraphics()) {
layout.checkSize = CheckBoxRenderer.GetGlyphSize(g, CheckBoxRenderer.ConvertFromButtonState(GetState(), true, Control.MouseIsOver)).Width;
}
}
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
- LoginDesigner.cs
- Menu.cs
- BaseValidatorDesigner.cs
- GZipUtils.cs
- DoubleCollectionConverter.cs
- DropShadowEffect.cs
- CqlIdentifiers.cs
- ListCollectionView.cs
- DataGridItemAttachedStorage.cs
- VisualBasicReference.cs
- Bidi.cs
- UInt32Storage.cs
- QueryableDataSourceEditData.cs
- PieceDirectory.cs
- CatalogZoneAutoFormat.cs
- HttpWebRequestElement.cs
- TreeIterators.cs
- UriTemplateQueryValue.cs
- DbModificationClause.cs
- RawMouseInputReport.cs
- NotifyIcon.cs
- CrossAppDomainChannel.cs
- InProcStateClientManager.cs
- StdValidatorsAndConverters.cs
- invalidudtexception.cs
- XmlElement.cs
- ListControlConvertEventArgs.cs
- PointHitTestResult.cs
- UrlPropertyAttribute.cs
- UndoManager.cs
- SelectionUIService.cs
- OutputScopeManager.cs
- AssemblyResourceLoader.cs
- DynamicContractTypeBuilder.cs
- PackWebRequest.cs
- AnimationTimeline.cs
- SqlInternalConnection.cs
- PathSegmentCollection.cs
- TextServicesDisplayAttributePropertyRanges.cs
- RSAPKCS1SignatureDeformatter.cs
- StringReader.cs
- DataGridViewCellCollection.cs
- PrimitiveCodeDomSerializer.cs
- AxisAngleRotation3D.cs
- DataControlFieldHeaderCell.cs
- KernelTypeValidation.cs
- StrokeFIndices.cs
- IERequestCache.cs
- Encoder.cs
- Common.cs
- CommandValueSerializer.cs
- XmlToDatasetMap.cs
- FreezableDefaultValueFactory.cs
- NetPipeSection.cs
- LongMinMaxAggregationOperator.cs
- SolidColorBrush.cs
- WinInetCache.cs
- XMLSchema.cs
- UncommonField.cs
- Util.cs
- While.cs
- DataGridViewCellEventArgs.cs
- SystemEvents.cs
- AssociationSetMetadata.cs
- ObjectDataSourceWizardForm.cs
- DateBoldEvent.cs
- TransformerInfoCollection.cs
- Context.cs
- RuntimeCompatibilityAttribute.cs
- EventSource.cs
- ScriptControlManager.cs
- ThrowHelper.cs
- ImportContext.cs
- StylesEditorDialog.cs
- EventLogEntry.cs
- SqlEnums.cs
- Expressions.cs
- ArgumentOutOfRangeException.cs
- ReferentialConstraint.cs
- EdmRelationshipRoleAttribute.cs
- MemberInitExpression.cs
- DetailsViewDeleteEventArgs.cs
- BaseWebProxyFinder.cs
- WorkflowQueue.cs
- Authorization.cs
- SecurityPolicySection.cs
- CodeSnippetStatement.cs
- ToolStripPanel.cs
- DataGridViewHitTestInfo.cs
- CacheModeConverter.cs
- BamlTreeUpdater.cs
- AspCompat.cs
- HttpsChannelListener.cs
- DataBinding.cs
- ScrollItemProviderWrapper.cs
- InstanceDataCollection.cs
- SmiEventSink.cs
- SqlCommandBuilder.cs
- DSASignatureDeformatter.cs
- WSHttpBindingCollectionElement.cs