Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / Design / MenuCommand.cs / 1305376 / MenuCommand.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel.Design { using Microsoft.Win32; using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [System.Runtime.InteropServices.ComVisible(true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class MenuCommand { // Events that we suface or call on // private EventHandler execHandler; private EventHandler statusHandler; private CommandID commandID; private int status; private IDictionary properties; ////// Represents a Windows /// menu or toolbar item. /// ////// Indicates that the given command is enabled. An enabled command may /// be selected by the user (it's not greyed out). /// private const int ENABLED = 0x02; //tagOLECMDF.OLECMDF_ENABLED; ////// Indicates that the given command is not visible on the command bar. /// private const int INVISIBLE = 0x10; ////// Indicates that the given command is checked in the "on" state. /// private const int CHECKED = 0x04; // tagOLECMDF.OLECMDF_LATCHED; ////// Indicates that the given command is supported. Marking a command /// as supported indicates that the shell will not look any further up /// the command target chain. /// private const int SUPPORTED = 0x01; // tagOLECMDF.OLECMDF_SUPPORTED ////// public MenuCommand(EventHandler handler, CommandID command) { this.execHandler = handler; this.commandID = command; this.status = SUPPORTED | ENABLED; } ////// Initializes a new instance of ///. /// /// public virtual bool Checked { get { return (status & CHECKED) != 0; } set { SetStatus(CHECKED, value); } } ///Gets or sets a value indicating whether this menu item is checked. ////// public virtual bool Enabled { get{ return (status & ENABLED) != 0; } set { SetStatus(ENABLED, value); } } private void SetStatus(int mask, bool value){ int newStatus = status; if (value) { newStatus |= mask; } else { newStatus &= ~mask; } if (newStatus != status) { status = newStatus; OnCommandChanged(EventArgs.Empty); } } ///Gets or /// sets a value indicating whether this menu item is available. ////// public virtual IDictionary Properties { get { if (properties == null) { properties = new HybridDictionary(); } return properties; } } ////// public virtual bool Supported { get{ return (status & SUPPORTED) != 0; } set{ SetStatus(SUPPORTED, value); } } ///Gets or sets a value /// indicating whether this menu item is supported. ////// public virtual bool Visible { get { return (status & INVISIBLE) == 0; } set { SetStatus(INVISIBLE, !value); } } ///Gets or sets a value /// indicating if this menu item is visible. ////// public event EventHandler CommandChanged { add { statusHandler += value; } remove { statusHandler -= value; } } ////// Occurs when the menu command changes. /// ////// public virtual CommandID CommandID { get { return commandID; } } ///Gets the ///associated with this menu command. /// public virtual void Invoke() { if (execHandler != null){ try { execHandler(this, EventArgs.Empty); } catch (CheckoutException cxe) { if (cxe == CheckoutException.Canceled) return; throw; } } } ////// Invokes a menu item. /// ////// public virtual void Invoke(object arg) { Invoke(); } ////// Invokes a menu item. The default implementation of this method ignores /// the argument, but deriving classes may override this method. /// ////// public virtual int OleStatus { get { return status; } } ////// Gets the OLE command status code for this menu item. /// ////// [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Security", "CA2109:ReviewVisibleEventHandlers")] // Safe: FullTrust LinkDemand to instantiate an object of this class. protected virtual void OnCommandChanged(EventArgs e) { if (statusHandler != null) { statusHandler(this, e); } } ///Provides notification and is called in response to /// a ///event. /// Overrides object's ToString(). /// public override string ToString() { string str = CommandID.ToString() + " : "; if ((status & SUPPORTED) != 0) { str += "Supported"; } if ((status & ENABLED) != 0) { str += "|Enabled"; } if ((status & INVISIBLE) == 0) { str += "|Visible"; } if ((status & CHECKED) != 0) { str += "|Checked"; } return str; } } } // 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
- MissingMemberException.cs
- WaitHandle.cs
- TextBoxRenderer.cs
- CannotUnloadAppDomainException.cs
- ExecutedRoutedEventArgs.cs
- DataSourceXmlClassAttribute.cs
- WebServicesInteroperability.cs
- ToggleButtonAutomationPeer.cs
- ObjectToken.cs
- AssertValidation.cs
- UrlMapping.cs
- BindingNavigator.cs
- SafeBitVector32.cs
- CacheDict.cs
- MethodRental.cs
- SqlEnums.cs
- XamlPointCollectionSerializer.cs
- CollectionViewGroupRoot.cs
- PerformanceCounterManager.cs
- HashHelpers.cs
- CharKeyFrameCollection.cs
- TextEditor.cs
- WindowHideOrCloseTracker.cs
- TextTreeObjectNode.cs
- SectionInformation.cs
- ConnectionManagementElementCollection.cs
- _NtlmClient.cs
- XAMLParseException.cs
- OperationDescription.cs
- GridProviderWrapper.cs
- RSAProtectedConfigurationProvider.cs
- VideoDrawing.cs
- CallTemplateAction.cs
- MessageLogger.cs
- ProviderUtil.cs
- ObjectContext.cs
- UnicastIPAddressInformationCollection.cs
- SafeRightsManagementSessionHandle.cs
- AssemblyName.cs
- ExpressionBindingCollection.cs
- NativeObjectSecurity.cs
- PieceNameHelper.cs
- Relationship.cs
- PhoneCall.cs
- _LoggingObject.cs
- RowToFieldTransformer.cs
- DetailsViewPagerRow.cs
- UTF8Encoding.cs
- RadialGradientBrush.cs
- DrawingContextDrawingContextWalker.cs
- PropertyPushdownHelper.cs
- RepeaterItem.cs
- Quaternion.cs
- SubMenuStyle.cs
- XmlSerializableServices.cs
- XmlHierarchicalEnumerable.cs
- ElementNotAvailableException.cs
- MethodAccessException.cs
- CacheAxisQuery.cs
- SchemaManager.cs
- FrameAutomationPeer.cs
- UserControl.cs
- SelectionProviderWrapper.cs
- PartBasedPackageProperties.cs
- recordstatefactory.cs
- EntityContainer.cs
- StdValidatorsAndConverters.cs
- ToolStripDropDownButton.cs
- MenuItemStyleCollection.cs
- SHA512.cs
- NumericUpDownAcceleration.cs
- FormattedText.cs
- pingexception.cs
- HtmlEncodedRawTextWriter.cs
- Win32Native.cs
- XmlExceptionHelper.cs
- EntityEntry.cs
- EntityConnection.cs
- XmlComment.cs
- NullableDoubleAverageAggregationOperator.cs
- ProgressBarAutomationPeer.cs
- TextServicesCompartmentContext.cs
- DataDocumentXPathNavigator.cs
- Oid.cs
- DataServiceBuildProvider.cs
- OleDbInfoMessageEvent.cs
- RoleGroup.cs
- KeyboardEventArgs.cs
- BindingMemberInfo.cs
- AxImporter.cs
- BindingSource.cs
- TimelineGroup.cs
- ColumnResult.cs
- MetadataItemEmitter.cs
- CachingHintValidation.cs
- SqlGatherConsumedAliases.cs
- SqlVersion.cs
- AuthorizationRule.cs
- BitmapSource.cs
- XslException.cs