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 / ToolStripOverflowButton.cs / 1 / ToolStripOverflowButton.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms { using System; using System.Collections; using System.ComponentModel; using System.Drawing; using System.Diagnostics; using System.Windows.Forms.Design; ////// /// ToolStripOverflowButton /// [ToolStripItemDesignerAvailability(ToolStripItemDesignerAvailability.None)] public class ToolStripOverflowButton : ToolStripDropDownButton { // we need to cache this away as the Parent property gets reset a lot. private ToolStrip parentToolStrip; ///[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] internal ToolStripOverflowButton(ToolStrip parentToolStrip) { SupportsItemClick = false; this.parentToolStrip = parentToolStrip; } /// protected internal override Padding DefaultMargin { get { return Padding.Empty; } } /// public override bool HasDropDownItems { get { return this.ParentInternal.OverflowItems.Count > 0; } } internal override bool OppositeDropDownAlign { get { return true; } } internal ToolStrip ParentToolStrip { get { return parentToolStrip; } } [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public new bool RightToLeftAutoMirrorImage { get { return base.RightToLeftAutoMirrorImage; } set { base.RightToLeftAutoMirrorImage = value; } } protected override AccessibleObject CreateAccessibilityInstance() { return new ToolStripOverflowButtonAccessibleObject(this); } /// protected override ToolStripDropDown CreateDefaultDropDown() { // AutoGenerate a Winbar DropDown - set the property so we hook events return new ToolStripOverflow(this); } /// public override Size GetPreferredSize(Size constrainingSize) { Size preferredSize = constrainingSize; if (this.ParentInternal != null) { if (this.ParentInternal.Orientation == Orientation.Horizontal) { preferredSize.Width = Math.Min(constrainingSize.Width, 16); } else { preferredSize.Height = Math.Min(constrainingSize.Height, 16); } } return preferredSize + this.Padding.Size; } // make sure the Overflow button extends from edge-edge. (Ignore Padding/Margin). internal protected override void SetBounds(Rectangle bounds) { if (ParentInternal != null && ParentInternal.LayoutEngine is ToolStripSplitStackLayout) { if (ParentInternal.Orientation == Orientation.Horizontal) { bounds.Height = ParentInternal.Height; bounds.Y = 0; } else { bounds.Width = ParentInternal.Width; bounds.X = 0; } } base.SetBounds(bounds); } /// protected override void OnPaint(PaintEventArgs e) { if (this.ParentInternal != null) { ToolStripRenderer renderer = this.ParentInternal.Renderer; renderer.DrawOverflowButtonBackground(new ToolStripItemRenderEventArgs(e.Graphics, this)); } } internal class ToolStripOverflowButtonAccessibleObject : ToolStripDropDownItemAccessibleObject { private string stockName; public ToolStripOverflowButtonAccessibleObject(ToolStripOverflowButton owner) : base(owner){ } public override string Name { get { string name = Owner.AccessibleName; if (name != null) { return name; } if (string.IsNullOrEmpty(stockName)) { stockName = SR.GetString(SR.ToolStripOptions); } return stockName; } set { base.Name = value; } } } } } // 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.Collections; using System.ComponentModel; using System.Drawing; using System.Diagnostics; using System.Windows.Forms.Design; ////// /// ToolStripOverflowButton /// [ToolStripItemDesignerAvailability(ToolStripItemDesignerAvailability.None)] public class ToolStripOverflowButton : ToolStripDropDownButton { // we need to cache this away as the Parent property gets reset a lot. private ToolStrip parentToolStrip; ///[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")] internal ToolStripOverflowButton(ToolStrip parentToolStrip) { SupportsItemClick = false; this.parentToolStrip = parentToolStrip; } /// protected internal override Padding DefaultMargin { get { return Padding.Empty; } } /// public override bool HasDropDownItems { get { return this.ParentInternal.OverflowItems.Count > 0; } } internal override bool OppositeDropDownAlign { get { return true; } } internal ToolStrip ParentToolStrip { get { return parentToolStrip; } } [ Browsable(false), EditorBrowsable(EditorBrowsableState.Never), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden) ] public new bool RightToLeftAutoMirrorImage { get { return base.RightToLeftAutoMirrorImage; } set { base.RightToLeftAutoMirrorImage = value; } } protected override AccessibleObject CreateAccessibilityInstance() { return new ToolStripOverflowButtonAccessibleObject(this); } /// protected override ToolStripDropDown CreateDefaultDropDown() { // AutoGenerate a Winbar DropDown - set the property so we hook events return new ToolStripOverflow(this); } /// public override Size GetPreferredSize(Size constrainingSize) { Size preferredSize = constrainingSize; if (this.ParentInternal != null) { if (this.ParentInternal.Orientation == Orientation.Horizontal) { preferredSize.Width = Math.Min(constrainingSize.Width, 16); } else { preferredSize.Height = Math.Min(constrainingSize.Height, 16); } } return preferredSize + this.Padding.Size; } // make sure the Overflow button extends from edge-edge. (Ignore Padding/Margin). internal protected override void SetBounds(Rectangle bounds) { if (ParentInternal != null && ParentInternal.LayoutEngine is ToolStripSplitStackLayout) { if (ParentInternal.Orientation == Orientation.Horizontal) { bounds.Height = ParentInternal.Height; bounds.Y = 0; } else { bounds.Width = ParentInternal.Width; bounds.X = 0; } } base.SetBounds(bounds); } /// protected override void OnPaint(PaintEventArgs e) { if (this.ParentInternal != null) { ToolStripRenderer renderer = this.ParentInternal.Renderer; renderer.DrawOverflowButtonBackground(new ToolStripItemRenderEventArgs(e.Graphics, this)); } } internal class ToolStripOverflowButtonAccessibleObject : ToolStripDropDownItemAccessibleObject { private string stockName; public ToolStripOverflowButtonAccessibleObject(ToolStripOverflowButton owner) : base(owner){ } public override string Name { get { string name = Owner.AccessibleName; if (name != null) { return name; } if (string.IsNullOrEmpty(stockName)) { stockName = SR.GetString(SR.ToolStripOptions); } return stockName; } set { base.Name = value; } } } } } // 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
- WebBrowserNavigatingEventHandler.cs
- MessageDesigner.cs
- CompositeActivityDesigner.cs
- input.cs
- ClassicBorderDecorator.cs
- XmlNotation.cs
- ToolStripComboBox.cs
- documentsequencetextcontainer.cs
- CfgRule.cs
- HttpHostedTransportConfiguration.cs
- Rotation3DAnimation.cs
- SafeUserTokenHandle.cs
- URIFormatException.cs
- SoapRpcServiceAttribute.cs
- TrackingSection.cs
- ControlIdConverter.cs
- SerializableTypeCodeDomSerializer.cs
- Attributes.cs
- DynamicActivity.cs
- PasswordPropertyTextAttribute.cs
- ContainerVisual.cs
- BindingValueChangedEventArgs.cs
- RemotingAttributes.cs
- BrowserCapabilitiesFactoryBase.cs
- ApplicationId.cs
- DiscoveryMessageSequenceCD1.cs
- HttpRequestTraceRecord.cs
- FixedDSBuilder.cs
- Pair.cs
- QilInvokeEarlyBound.cs
- GeneralTransform3DTo2DTo3D.cs
- PolicyException.cs
- DefaultPropertyAttribute.cs
- TextStore.cs
- SettingsBindableAttribute.cs
- ListViewGroupItemCollection.cs
- SmtpDigestAuthenticationModule.cs
- ParameterDataSourceExpression.cs
- BatchServiceHost.cs
- DbConnectionPoolGroupProviderInfo.cs
- _NegotiateClient.cs
- DynamicRendererThreadManager.cs
- DataSourceUtil.cs
- PrintingPermissionAttribute.cs
- ToolStripLocationCancelEventArgs.cs
- SqlCacheDependencyDatabaseCollection.cs
- Opcode.cs
- LiteralControl.cs
- BrushValueSerializer.cs
- RTLAwareMessageBox.cs
- CodeTypeOfExpression.cs
- WindowsEditBox.cs
- XPathArrayIterator.cs
- CompositeFontParser.cs
- SettingsContext.cs
- StorageRoot.cs
- SR.Designer.cs
- DataGridViewAddColumnDialog.cs
- ErrorWebPart.cs
- BrowserDefinitionCollection.cs
- ByteStorage.cs
- MetadataCache.cs
- InvokeHandlers.cs
- CapabilitiesSection.cs
- ResourceWriter.cs
- Attachment.cs
- TraceRecord.cs
- DispatcherProcessingDisabled.cs
- DataGridViewLinkColumn.cs
- SiteMapSection.cs
- ContentPathSegment.cs
- ToolStripOverflowButton.cs
- OracleBFile.cs
- ReliabilityContractAttribute.cs
- XmlSchemaObject.cs
- SchemaLookupTable.cs
- AttachmentService.cs
- DataControlFieldHeaderCell.cs
- UsernameTokenFactoryCredential.cs
- RtfControls.cs
- CachedCompositeFamily.cs
- LoginUtil.cs
- TransactionProxy.cs
- UiaCoreProviderApi.cs
- SqlDataSourceCommandEventArgs.cs
- HitTestParameters.cs
- DataColumnMapping.cs
- XmlAutoDetectWriter.cs
- FamilyMapCollection.cs
- InvalidCastException.cs
- KnownTypesProvider.cs
- GeometryCombineModeValidation.cs
- CodeCatchClause.cs
- MessageQueueTransaction.cs
- DebuggerAttributes.cs
- HttpHeaderCollection.cs
- ExpressionConverter.cs
- Fonts.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- BrushValueSerializer.cs