Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / ToolStripActionList.cs / 1 / ToolStripActionList.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Windows.Forms.Design { using System.Design; using System.Runtime.InteropServices; using System.ComponentModel; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System; using System.Security; using System.Security.Permissions; using System.Collections; using System.ComponentModel.Design; using System.Windows.Forms; ///// IMPORTANT NOTE //THE CONTENTS OF THIS FILE ARE NOT ARRANGED IN ALPHABETICAL ORDER BUT MAP THERE POSITION IN THE "CHROME" // internal class ToolStripActionList : DesignerActionList { private ToolStrip _toolStrip; private bool _autoShow = false; private ToolStripDesigner designer; private ChangeToolStripParentVerb changeParentVerb = null; private StandardMenuStripVerb standardItemsVerb = null; /// public ToolStripActionList(ToolStripDesigner designer) : base(designer.Component) { _toolStrip = (ToolStrip)designer.Component; this.designer = designer; changeParentVerb = new ChangeToolStripParentVerb(SR.GetString(SR.ToolStripDesignerEmbedVerb), designer); if (!(_toolStrip is StatusStrip)) { standardItemsVerb = new StandardMenuStripVerb(SR.GetString(SR.ToolStripDesignerStandardItemsVerb), designer); } } /// /// False if were inherited and can't be modified. /// private bool CanAddItems { get { // Make sure the component is not being inherited -- we can't delete these! // InheritanceAttribute ia = (InheritanceAttribute)TypeDescriptor.GetAttributes(_toolStrip)[typeof(InheritanceAttribute)]; if (ia == null || ia.InheritanceLevel == InheritanceLevel.NotInherited) { return true; } return false; } } private bool IsReadOnly { get { // Make sure the component is not being inherited -- we can't delete these! // InheritanceAttribute ia = (InheritanceAttribute)TypeDescriptor.GetAttributes(_toolStrip)[typeof(InheritanceAttribute)]; if (ia == null || ia.InheritanceLevel == InheritanceLevel.InheritedReadOnly) { return true; } return false; } } //helper function to get the property on the actual Control [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] private object GetProperty(string propertyName) { PropertyDescriptor getProperty = TypeDescriptor.GetProperties(_toolStrip)[propertyName]; Debug.Assert( getProperty != null, "Could not find given property in control."); if( getProperty != null ) { return getProperty.GetValue(_toolStrip); } return null; } //helper function to change the property on the actual Control [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] private void ChangeProperty(string propertyName, object value) { PropertyDescriptor changingProperty = TypeDescriptor.GetProperties(_toolStrip)[propertyName]; Debug.Assert( changingProperty != null, "Could not find given property in control." ); if( changingProperty != null ) { changingProperty.SetValue(_toolStrip, value); } } ////// /// Controls whether the Chrome is Automatically shown on selection /// [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] public override bool AutoShow { get { return _autoShow; } set { if(_autoShow != value) { _autoShow = value; } } } ////// /// Sets Dock /// public DockStyle Dock { [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] get { return (DockStyle)GetProperty("Dock"); } [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] set { if (value != Dock) { ChangeProperty("Dock", (object)value); } } } ////// /// Sets RenderMode /// public ToolStripRenderMode RenderMode { [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] get { return (ToolStripRenderMode)GetProperty("RenderMode"); } [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] set { if (value != RenderMode) { ChangeProperty("RenderMode", (object)value); } } } ////// /// Sets GripStyle /// public ToolStripGripStyle GripStyle { [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] get { return (ToolStripGripStyle)GetProperty("GripStyle"); } [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] set { if (value != GripStyle) { ChangeProperty("GripStyle", (object)value); } } } [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] private void InvokeEmbedVerb() { // Hide the Panel... DesignerActionUIService actionUIService = (DesignerActionUIService)_toolStrip.Site.GetService(typeof(DesignerActionUIService)); if (actionUIService != null) { actionUIService.HideUI(_toolStrip); } changeParentVerb.ChangeParent(); } [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] private void InvokeInsertStandardItemsVerb() { standardItemsVerb.InsertItems(); } ////// /// The Main method to group the ActionItems and pass it to the Panel. /// public override DesignerActionItemCollection GetSortedActionItems() { DesignerActionItemCollection items = new DesignerActionItemCollection(); if (!IsReadOnly) { items.Add(new DesignerActionMethodItem(this, "InvokeEmbedVerb", SR.GetString(SR.ToolStripDesignerEmbedVerb), "", SR.GetString(SR.ToolStripDesignerEmbedVerbDesc), true)); } if (CanAddItems) { if (!(_toolStrip is StatusStrip)) { items.Add(new DesignerActionMethodItem(this, "InvokeInsertStandardItemsVerb", SR.GetString(SR.ToolStripDesignerStandardItemsVerb),"", SR.GetString(SR.ToolStripDesignerStandardItemsVerbDesc), true)); } items.Add(new DesignerActionPropertyItem("RenderMode", SR.GetString(SR.ToolStripActionList_RenderMode), SR.GetString(SR.ToolStripActionList_Layout), SR.GetString(SR.ToolStripActionList_RenderModeDesc))); } if (!(_toolStrip.Parent is ToolStripPanel)) { items.Add(new DesignerActionPropertyItem("Dock", SR.GetString(SR.ToolStripActionList_Dock), SR.GetString(SR.ToolStripActionList_Layout), SR.GetString(SR.ToolStripActionList_DockDesc))); } if (!(_toolStrip is StatusStrip)) { items.Add(new DesignerActionPropertyItem("GripStyle", SR.GetString(SR.ToolStripActionList_GripStyle), SR.GetString(SR.ToolStripActionList_Layout), SR.GetString(SR.ToolStripActionList_GripStyleDesc))); } return items; } } } // 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
- DocumentEventArgs.cs
- TempFiles.cs
- WorkflowNamespace.cs
- LineProperties.cs
- Application.cs
- StyleSheetDesigner.cs
- WebPartTracker.cs
- BaseAddressElementCollection.cs
- GroupBoxDesigner.cs
- DbConnectionFactory.cs
- Publisher.cs
- TdsValueSetter.cs
- BaseTemplateBuildProvider.cs
- XmlSubtreeReader.cs
- SiteMapHierarchicalDataSourceView.cs
- RenderDataDrawingContext.cs
- DataServiceException.cs
- DockPatternIdentifiers.cs
- RelatedPropertyManager.cs
- RecordConverter.cs
- FreeFormDesigner.cs
- AddInControllerImpl.cs
- SafeCryptHandles.cs
- ToolStripEditorManager.cs
- NullEntityWrapper.cs
- BooleanAnimationBase.cs
- SubclassTypeValidator.cs
- RowSpanVector.cs
- AccessDataSourceView.cs
- X509Certificate2.cs
- CodeDOMProvider.cs
- XmlCountingReader.cs
- PersonalizationDictionary.cs
- ToolboxDataAttribute.cs
- WebPartPersonalization.cs
- ProfileSection.cs
- EpmContentSerializerBase.cs
- DataBinding.cs
- DefaultSection.cs
- ProfileParameter.cs
- ServiceChannelFactory.cs
- AjaxFrameworkAssemblyAttribute.cs
- Material.cs
- ArraySortHelper.cs
- SerialReceived.cs
- NativeMethods.cs
- MultiSelector.cs
- MsmqInputChannel.cs
- XmlReflectionImporter.cs
- SrgsElementFactory.cs
- TimeIntervalCollection.cs
- PerfService.cs
- HuffCodec.cs
- DataGridViewButtonColumn.cs
- SqlClientWrapperSmiStreamChars.cs
- SelectorAutomationPeer.cs
- Ray3DHitTestResult.cs
- GPPOINTF.cs
- ErrorWrapper.cs
- PeerMessageDispatcher.cs
- UdpTransportBindingElement.cs
- SmtpFailedRecipientsException.cs
- TriggerActionCollection.cs
- ChangePassword.cs
- FillRuleValidation.cs
- RecognizedAudio.cs
- AndCondition.cs
- Bezier.cs
- Rule.cs
- ImportOptions.cs
- PartBasedPackageProperties.cs
- SqlClientWrapperSmiStream.cs
- Oid.cs
- ReadOnlyCollection.cs
- FlowPosition.cs
- ToolStripSplitStackLayout.cs
- DebugHandleTracker.cs
- HtmlTableRowCollection.cs
- RotateTransform3D.cs
- WorkItem.cs
- ActionFrame.cs
- ReadOnlyPermissionSet.cs
- ListMarkerSourceInfo.cs
- SetIterators.cs
- SectionXmlInfo.cs
- SqlDataReader.cs
- BamlTreeMap.cs
- GridSplitter.cs
- PropertyRecord.cs
- BaseDataBoundControl.cs
- _TLSstream.cs
- Messages.cs
- XmlException.cs
- ICspAsymmetricAlgorithm.cs
- JpegBitmapDecoder.cs
- _PooledStream.cs
- DataGridViewRowPostPaintEventArgs.cs
- SliderAutomationPeer.cs
- ApplicationServicesHostFactory.cs
- NullableBoolConverter.cs