Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WinForms / System / WinForms / Design / Behavior / DesignerActionKeyboardBehavior.cs / 1 / DesignerActionKeyboardBehavior.cs
namespace System.Windows.Forms.Design.Behavior { using System; using System.Collections; using System.ComponentModel; using System.ComponentModel.Design; using System.Design; using System.Diagnostics; using System.Drawing; using System.Windows.Forms.Design; using System.Diagnostics.CodeAnalysis; ////// /// internal sealed class DesignerActionKeyboardBehavior : Behavior { private DesignerActionPanel panel; private IMenuCommandService menuService; private DesignerActionUIService daUISvc; private static readonly Guid VSStandardCommandSet97 = new Guid("{5efc7975-14bc-11cf-9b2b-00aa00573819}"); public DesignerActionKeyboardBehavior(DesignerActionPanel panel, IServiceProvider serviceProvider, BehaviorService behaviorService) : base(true, behaviorService) { this.panel = panel; if(serviceProvider != null) { this.menuService = serviceProvider.GetService(typeof(IMenuCommandService)) as IMenuCommandService; Debug.Assert(menuService != null, "we should have found a menu service here..."); this.daUISvc = serviceProvider.GetService(typeof(DesignerActionUIService)) as DesignerActionUIService; } } // THIS shoudl not stay here, creation of a custom command or of the real thing should be handled in the // designeractionpanel itself public override MenuCommand FindCommand(CommandID commandId) { if(panel != null && menuService != null) { // if the command we're looking for is handled by the panel, just tell VS that this command is // disabled. otherwise let it through as usual... foreach(CommandID candidateCommandId in panel.FilteredCommandIDs) { if(candidateCommandId.Equals(commandId)) { MenuCommand dummyMC = new MenuCommand(delegate{}, commandId); dummyMC.Enabled = false; //Debug.WriteLine("Found command id in DesignerActionPAnel supported commands"); return dummyMC; } } // in case of a ctrl-tab we need to close the DAP if (daUISvc != null && commandId.Guid == DesignerActionKeyboardBehavior.VSStandardCommandSet97 && commandId.ID == 1124) { daUISvc.HideUI(null); } } //Debug.WriteLine("NOT Found command id in DesignerActionPAnel supported commands. ASking base..."); return base.FindCommand(commandId); // this will route the request to the parent behavior } } } // 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
- BrowserCapabilitiesCompiler.cs
- RenameRuleObjectDialog.Designer.cs
- TemplatedAdorner.cs
- LoginDesigner.cs
- EntityDataSourceUtil.cs
- DelegatedStream.cs
- DBCommandBuilder.cs
- SettingsProperty.cs
- TablePatternIdentifiers.cs
- AssemblyCache.cs
- WebPartEditorCancelVerb.cs
- ServiceOperationInfoTypeConverter.cs
- WsdlInspector.cs
- CollectionChangeEventArgs.cs
- Size3DConverter.cs
- webclient.cs
- TextHidden.cs
- HttpRequestCacheValidator.cs
- RuntimeHandles.cs
- Math.cs
- PropertyInfoSet.cs
- RootAction.cs
- TimerElapsedEvenArgs.cs
- TileBrush.cs
- TimelineGroup.cs
- exports.cs
- GridViewCancelEditEventArgs.cs
- Command.cs
- ErasingStroke.cs
- BitmapCodecInfoInternal.cs
- EventManager.cs
- ListItemCollection.cs
- UserValidatedEventArgs.cs
- PartialArray.cs
- ProtocolsConfiguration.cs
- HealthMonitoringSectionHelper.cs
- AcceleratedTokenAuthenticator.cs
- QueueSurrogate.cs
- QilLoop.cs
- TypeSystemProvider.cs
- XmlSchemaObjectTable.cs
- MergeFilterQuery.cs
- DataSetUtil.cs
- PolyQuadraticBezierSegment.cs
- FrameworkElementFactoryMarkupObject.cs
- StorageModelBuildProvider.cs
- Stackframe.cs
- ListenerConnectionModeReader.cs
- LassoSelectionBehavior.cs
- Menu.cs
- XmlQueryRuntime.cs
- CompilationLock.cs
- LoadedOrUnloadedOperation.cs
- DbConvert.cs
- Membership.cs
- CaseExpr.cs
- PreProcessor.cs
- OpenFileDialog.cs
- ModuleBuilderData.cs
- MembershipAdapter.cs
- XDeferredAxisSource.cs
- ResourceReferenceExpressionConverter.cs
- EventlogProvider.cs
- PromptStyle.cs
- StringDictionaryEditor.cs
- ClientScriptManager.cs
- XmlDownloadManager.cs
- AssemblyContextControlItem.cs
- BamlLocalizableResourceKey.cs
- webbrowsersite.cs
- Bitmap.cs
- Encoding.cs
- StringInfo.cs
- CapacityStreamGeometryContext.cs
- MenuItemBindingCollection.cs
- OpenFileDialog.cs
- LinkDescriptor.cs
- IdentitySection.cs
- AudioFormatConverter.cs
- HandlerFactoryCache.cs
- SqlReferenceCollection.cs
- SystemIPv4InterfaceProperties.cs
- EmptyEnumerator.cs
- Internal.cs
- Query.cs
- ContainerActivationHelper.cs
- DBDataPermissionAttribute.cs
- RtfToXamlLexer.cs
- BitmapMetadataEnumerator.cs
- listitem.cs
- ImplicitInputBrush.cs
- GeneralTransform3DGroup.cs
- CultureSpecificStringDictionary.cs
- MenuCommand.cs
- PropertyMetadata.cs
- ViewStateModeByIdAttribute.cs
- MetadataPropertyvalue.cs
- SizeConverter.cs
- WriteStateInfoBase.cs
- SqlNodeTypeOperators.cs