Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / WinForms / Managed / System / WinForms / ToolStripProfessionalLowResolutionRenderer.cs / 1305376 / ToolStripProfessionalLowResolutionRenderer.cs
namespace System.Windows.Forms { using System; using System.Drawing; internal class ToolStripProfessionalLowResolutionRenderer : ToolStripProfessionalRenderer { public ToolStripProfessionalLowResolutionRenderer() { } internal override ToolStripRenderer RendererOverride { get { return null; } } protected override void OnRenderToolStripBackground(ToolStripRenderEventArgs e) { if( e.ToolStrip is ToolStripDropDown ) { base.OnRenderToolStripBackground(e); } } protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e) { if(e.ToolStrip is MenuStrip) { return; } else if (e.ToolStrip is StatusStrip ) { return; } else if (e.ToolStrip is ToolStripDropDown) { base.OnRenderToolStripBorder(e); } else { RenderToolStripBorderInternal(e); } } private void RenderToolStripBorderInternal(ToolStripRenderEventArgs e) { Rectangle bounds = new Rectangle(Point.Empty, e.ToolStrip.Size); Graphics g = e.Graphics; // have to create a pen here because we're not allowed to modify the SystemPens. using( Pen p = new Pen(SystemColors.ButtonShadow) ) { p.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot; bool oddWidth = ((bounds.Width & 0x1) == 0x1); bool oddHeight = ((bounds.Height & 0x1) == 0x1); int indent = 2; // top g.DrawLine(p, bounds.X + indent, bounds.Y, bounds.Width - 1, bounds.Y); // bottom g.DrawLine(p, bounds.X + indent, bounds.Height - 1, bounds.Width - 1, bounds.Height - 1); // left g.DrawLine(p, bounds.X, bounds.Y + indent, bounds.X, bounds.Height - 1); // right g.DrawLine(p, bounds.Width - 1, bounds.Y + indent, bounds.Width - 1, bounds.Height - 1); // connecting pixels // top left conntecting pixel - always drawn g.FillRectangle(SystemBrushes.ButtonShadow, new Rectangle(1, 1, 1, 1)); if (oddWidth) { // top right pixel g.FillRectangle(SystemBrushes.ButtonShadow, new Rectangle(bounds.Width - 2, 1, 1, 1)); } // bottom conntecting pixels - drawn only if height is odd if(oddHeight) { // bottom left g.FillRectangle(SystemBrushes.ButtonShadow, new Rectangle(1, bounds.Height - 2, 1, 1)); } // top and bottom right conntecting pixel - drawn only if height and width are odd if( oddHeight && oddWidth ) { // bottom right g.FillRectangle(SystemBrushes.ButtonShadow, new Rectangle(bounds.Width - 2, bounds.Height - 2, 1, 1)); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Windows.Forms { using System; using System.Drawing; internal class ToolStripProfessionalLowResolutionRenderer : ToolStripProfessionalRenderer { public ToolStripProfessionalLowResolutionRenderer() { } internal override ToolStripRenderer RendererOverride { get { return null; } } protected override void OnRenderToolStripBackground(ToolStripRenderEventArgs e) { if( e.ToolStrip is ToolStripDropDown ) { base.OnRenderToolStripBackground(e); } } protected override void OnRenderToolStripBorder(ToolStripRenderEventArgs e) { if(e.ToolStrip is MenuStrip) { return; } else if (e.ToolStrip is StatusStrip ) { return; } else if (e.ToolStrip is ToolStripDropDown) { base.OnRenderToolStripBorder(e); } else { RenderToolStripBorderInternal(e); } } private void RenderToolStripBorderInternal(ToolStripRenderEventArgs e) { Rectangle bounds = new Rectangle(Point.Empty, e.ToolStrip.Size); Graphics g = e.Graphics; // have to create a pen here because we're not allowed to modify the SystemPens. using( Pen p = new Pen(SystemColors.ButtonShadow) ) { p.DashStyle = System.Drawing.Drawing2D.DashStyle.Dot; bool oddWidth = ((bounds.Width & 0x1) == 0x1); bool oddHeight = ((bounds.Height & 0x1) == 0x1); int indent = 2; // top g.DrawLine(p, bounds.X + indent, bounds.Y, bounds.Width - 1, bounds.Y); // bottom g.DrawLine(p, bounds.X + indent, bounds.Height - 1, bounds.Width - 1, bounds.Height - 1); // left g.DrawLine(p, bounds.X, bounds.Y + indent, bounds.X, bounds.Height - 1); // right g.DrawLine(p, bounds.Width - 1, bounds.Y + indent, bounds.Width - 1, bounds.Height - 1); // connecting pixels // top left conntecting pixel - always drawn g.FillRectangle(SystemBrushes.ButtonShadow, new Rectangle(1, 1, 1, 1)); if (oddWidth) { // top right pixel g.FillRectangle(SystemBrushes.ButtonShadow, new Rectangle(bounds.Width - 2, 1, 1, 1)); } // bottom conntecting pixels - drawn only if height is odd if(oddHeight) { // bottom left g.FillRectangle(SystemBrushes.ButtonShadow, new Rectangle(1, bounds.Height - 2, 1, 1)); } // top and bottom right conntecting pixel - drawn only if height and width are odd if( oddHeight && oddWidth ) { // bottom right g.FillRectangle(SystemBrushes.ButtonShadow, new Rectangle(bounds.Width - 2, bounds.Height - 2, 1, 1)); } } } } } // 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
- ObjectStateManagerMetadata.cs
- EpmContentSerializer.cs
- WebSysDefaultValueAttribute.cs
- CompModSwitches.cs
- PrePrepareMethodAttribute.cs
- PrivilegedConfigurationManager.cs
- ListViewUpdatedEventArgs.cs
- XsdBuildProvider.cs
- unitconverter.cs
- DataMemberListEditor.cs
- WSSecurityOneDotZeroSendSecurityHeader.cs
- SizeLimitedCache.cs
- ControlType.cs
- Message.cs
- CorruptingExceptionCommon.cs
- ToolStripHighContrastRenderer.cs
- BitmapEffectCollection.cs
- ConfigUtil.cs
- CalloutQueueItem.cs
- BindUriHelper.cs
- DbMetaDataCollectionNames.cs
- SetStateEventArgs.cs
- LineUtil.cs
- DSASignatureDeformatter.cs
- SmiConnection.cs
- CngKey.cs
- SendActivityEventArgs.cs
- MailWriter.cs
- NullableFloatAverageAggregationOperator.cs
- MailFileEditor.cs
- CodeMethodInvokeExpression.cs
- XmlAnyElementAttribute.cs
- JsonQNameDataContract.cs
- TextDecorationCollection.cs
- ForeignConstraint.cs
- FolderBrowserDialog.cs
- ThrowHelper.cs
- OutputCacheSection.cs
- DragStartedEventArgs.cs
- DataRowExtensions.cs
- ContentControl.cs
- WebPartConnectionsCancelVerb.cs
- HMAC.cs
- ReadOnlyDictionary.cs
- DataGridViewHeaderCell.cs
- StringDictionaryEditor.cs
- AsyncPostBackTrigger.cs
- WpfPayload.cs
- Floater.cs
- TableAdapterManagerGenerator.cs
- DynamicAttribute.cs
- XPathDocumentIterator.cs
- XamlToRtfWriter.cs
- FormsIdentity.cs
- PolyQuadraticBezierSegment.cs
- NonVisualControlAttribute.cs
- WebServiceTypeData.cs
- DispatchWrapper.cs
- XNodeValidator.cs
- OleDbParameterCollection.cs
- Freezable.cs
- EntityChangedParams.cs
- DPTypeDescriptorContext.cs
- TableCellCollection.cs
- BitmapInitialize.cs
- PrimarySelectionGlyph.cs
- MembershipAdapter.cs
- WindowsScrollBarBits.cs
- DateTimeConstantAttribute.cs
- Empty.cs
- UiaCoreApi.cs
- ElementsClipboardData.cs
- RSACryptoServiceProvider.cs
- PrintPageEvent.cs
- FontUnitConverter.cs
- SQLMoney.cs
- Bits.cs
- DispatcherSynchronizationContext.cs
- SecurityState.cs
- KeyGesture.cs
- PermissionListSet.cs
- FontStyles.cs
- EventLogInternal.cs
- TextDecorationCollectionConverter.cs
- LinqDataSourceValidationException.cs
- DispatcherOperation.cs
- WindowAutomationPeer.cs
- DefaultAsyncDataDispatcher.cs
- ModelTreeEnumerator.cs
- TabPanel.cs
- XmlDataProvider.cs
- BooleanToSelectiveScrollingOrientationConverter.cs
- RecognizedPhrase.cs
- DetailsViewPageEventArgs.cs
- WebEvents.cs
- ErrorFormatter.cs
- HierarchicalDataSourceControl.cs
- DataGridItem.cs
- DbgUtil.cs
- MultilineStringConverter.cs