Code:
/ FX-1434 / FX-1434 / 1.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
- HttpDictionary.cs
- GorillaCodec.cs
- BoundPropertyEntry.cs
- CodeLinePragma.cs
- RemotingSurrogateSelector.cs
- Visual.cs
- FontEmbeddingManager.cs
- Composition.cs
- ProjectionPlan.cs
- StringValidatorAttribute.cs
- SingleConverter.cs
- ErrorTolerantObjectWriter.cs
- MobileControlBuilder.cs
- DataRowComparer.cs
- DataFormat.cs
- ThicknessAnimationUsingKeyFrames.cs
- base64Transforms.cs
- UniqueConstraint.cs
- GatewayIPAddressInformationCollection.cs
- GraphicsContainer.cs
- BitmapEffectInputData.cs
- Assert.cs
- DataGridViewColumnStateChangedEventArgs.cs
- IisHelper.cs
- PrintDialogException.cs
- IntranetCredentialPolicy.cs
- DummyDataSource.cs
- DBDataPermissionAttribute.cs
- ResourceDisplayNameAttribute.cs
- XmlSchemaChoice.cs
- PropertyEmitter.cs
- WebPartManagerInternals.cs
- SchemaConstraints.cs
- StrongNameMembershipCondition.cs
- ObjectDataSourceDisposingEventArgs.cs
- ObjectConverter.cs
- Geometry.cs
- DetailsViewDeletedEventArgs.cs
- ListViewEditEventArgs.cs
- Debugger.cs
- ValidatorCompatibilityHelper.cs
- Registry.cs
- DiscoveryProxy.cs
- _RequestCacheProtocol.cs
- AuthenticationException.cs
- HttpModuleCollection.cs
- TextSelectionHelper.cs
- XmlQueryOutput.cs
- TextChangedEventArgs.cs
- WebPartDisplayMode.cs
- ObjectAssociationEndMapping.cs
- BasicHttpMessageSecurityElement.cs
- VirtualDirectoryMappingCollection.cs
- NullableDoubleMinMaxAggregationOperator.cs
- ToolStripManager.cs
- Comparer.cs
- WorkflowNamespace.cs
- OleDbRowUpdatedEvent.cs
- OdbcRowUpdatingEvent.cs
- ValidatedControlConverter.cs
- ReceiveErrorHandling.cs
- SchemaNames.cs
- SqlRewriteScalarSubqueries.cs
- PartitionResolver.cs
- MediaElementAutomationPeer.cs
- StrongTypingException.cs
- TraceEventCache.cs
- HierarchicalDataSourceDesigner.cs
- UnorderedHashRepartitionStream.cs
- Page.cs
- XmlDataDocument.cs
- NumericExpr.cs
- SessionStateModule.cs
- TypeListConverter.cs
- BamlBinaryReader.cs
- UrlPath.cs
- GeneralTransform3DTo2DTo3D.cs
- MsmqTransportReceiveParameters.cs
- PaintValueEventArgs.cs
- Separator.cs
- VisualStateChangedEventArgs.cs
- XmlElementAttributes.cs
- ChangeTracker.cs
- FillErrorEventArgs.cs
- FactoryGenerator.cs
- DoubleStorage.cs
- QilTypeChecker.cs
- XpsS0ValidatingLoader.cs
- RegisteredExpandoAttribute.cs
- ContentPlaceHolderDesigner.cs
- TagPrefixCollection.cs
- ToolboxItemFilterAttribute.cs
- TemplateDefinition.cs
- BinaryWriter.cs
- RotateTransform3D.cs
- ExpressionBindingCollection.cs
- SelectionItemPattern.cs
- Config.cs
- DetailsViewDeleteEventArgs.cs
- CommonXSendMessage.cs