public VisualStudioHelper(CmdArgsPackage package) { this.package = package ?? throw new ArgumentNullException(nameof(package)); _VSConstants_VSStd97CmdID_GUID = typeof(VSConstants.VSStd97CmdID).GUID.ToString("B").ToUpper(); _VSConstants_VSStd2KCmdID_GUID = typeof(VSConstants.VSStd2KCmdID).GUID.ToString("B").ToUpper(); }
/// <summary> /// Initializes a new instance of the <see cref="Commands"/> class. /// Adds our command handlers for menu (commands must exist in the command table file) /// </summary> /// <param name="package">Owner package, not null.</param> private Commands(CmdArgsPackage package) { if (package == null) { throw new ArgumentNullException(nameof(package)); } this.package = package; OleMenuCommandService commandService = this.ServiceProvider.GetService(typeof(IMenuCommandService)) as OleMenuCommandService; if (commandService != null) { AddCommandToService(commandService, VSMenuCmdSet, ToolWindowCommandId, this.ShowToolWindow); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarAddCommandId, package.ToolWindowViewModel.AddEntryCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarAddGroupCommandId, package.ToolWindowViewModel.AddGroupCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarRemoveCommandId, package.ToolWindowViewModel.RemoveEntriesCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarMoveUpCommandId, package.ToolWindowViewModel.MoveEntriesUpCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarMoveDownCommandId, package.ToolWindowViewModel.MoveEntriesDownCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarCopyCommandlineCommandId, package.ToolWindowViewModel.CopyCommandlineCommand); AddToggleCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarShowAllProjectsCommandId, package.ToolWindowViewModel.ShowAllProjectsCommand, () => package.ToolWindowViewModel.TreeViewModel.ShowAllProjects); } }
public VisualStudioHelper(CmdArgsPackage package) { this.package = package; this.appObject = package.GetService <SDTE, EnvDTE.DTE>(); _VSConstants_VSStd97CmdID_GUID = typeof(VSConstants.VSStd97CmdID).GUID.ToString("B").ToUpper(); _VSConstants_VSStd2KCmdID_GUID = typeof(VSConstants.VSStd2KCmdID).GUID.ToString("B").ToUpper(); }
public ToolWindow(CmdArgsPackage package, ViewModel.ToolWindowViewModel viewModel) : base(null) { if (package == null) { throw new ArgumentNullException(nameof(package)); } if (viewModel == null) { throw new ArgumentNullException(nameof(viewModel)); } base.Package = package; this.Caption = "Command Line Arguments"; // This is the user control hosted by the tool window; Note that, even if this class implements IDisposable, // we are not calling Dispose on this object. This is because ToolWindowPane calls Dispose on // the object returned by the Content property. this.view = new View.ToolWindowControl(viewModel); this.Content = view; // Id from VSPackage.resx. BitmapResourceID = 300; // The index is actually zero-based, in contrast to the bitmaps in the vsct-file. BitmapIndex = 0; this.ToolBar = new CommandID(PackageGuids.guidCmdArgsToolBarCmdSet, PackageIds.TWToolbar); matchCaseSearchOption = new WindowSearchBooleanOption("Match Case", "Enable to make search case sensitive.", false); searchOptions = new List <IVsWindowSearchOption> { matchCaseSearchOption }; }
/// <summary> /// Initializes the singleton instance of the command. /// </summary> /// <param name="package">Owner package, not null.</param> public static async Task InitializeAsync(CmdArgsPackage package) { if (package == null) { throw new ArgumentNullException(nameof(package)); } var cmdService = await package.GetServiceAsync <IMenuCommandService, OleMenuCommandService>(); // AddCommand needs to be run on main thread! await package.JoinableTaskFactory.SwitchToMainThreadAsync(); Instance = new Commands(package, cmdService); }
/// <summary> /// Initializes a new instance of the <see cref="ToolWindow"/> class. /// </summary> public CmdArgsPackage() { // Inside this method you can place any initialization code that does not require // any Visual Studio service because at this point the package object is created but // not sited yet inside Visual Studio environment. The place to do all the other // initialization is the Initialize method. Debug.Assert(Instance == null, "There can be only be one! (Package)"); Instance = this; ToolWindowViewModel = new ToolWindowViewModel(this); // add option keys to store custom data in suo file this.AddOptionKey(SolutionOptionKey); }
public VisualStudioHelper(CmdArgsPackage package) { this.package = package; this.appObject = package.GetService <SDTE, EnvDTE.DTE>(); // see: https://support.microsoft.com/en-us/kb/555430 this.solutionEvents = this.appObject.Events.SolutionEvents; this.commandEvents = this.appObject.Events.CommandEvents; this.solutionEvents.Opened += SolutionEvents_Opened; this.solutionEvents.AfterClosing += SolutionEvents_AfterClosing; this.solutionEvents.BeforeClosing += SolutionEvents_BeforeClosing; this.solutionEvents.ProjectAdded += SolutionEvents_ProjectAdded; this.solutionEvents.ProjectRemoved += SolutionEvents_ProjectRemoved; this.solutionEvents.ProjectRenamed += SolutionEvents_ProjectRenamed; }
public VisualStudioHelper(CmdArgsPackage package) { this.package = package; this.appObject = package.GetService<SDTE, EnvDTE.DTE>(); // see: https://support.microsoft.com/en-us/kb/555430 this.solutionEvents = this.appObject.Events.SolutionEvents; this.commandEvents = this.appObject.Events.CommandEvents; this.solutionEvents.Opened += SolutionEvents_Opened; this.solutionEvents.AfterClosing += SolutionEvents_AfterClosing; this.solutionEvents.BeforeClosing += SolutionEvents_BeforeClosing; this.solutionEvents.ProjectAdded += SolutionEvents_ProjectAdded; this.solutionEvents.ProjectRemoved += SolutionEvents_ProjectRemoved; this.solutionEvents.ProjectRenamed += SolutionEvents_ProjectRenamed; }
/// <summary> /// Initializes a new instance of the <see cref="Commands"/> class. /// Adds our command handlers for menu (commands must exist in the command table file) /// </summary> /// <param name="package">Owner package, not null.</param> private Commands(CmdArgsPackage package, OleMenuCommandService commandService) { this.package = package; if (commandService != null) { AddCommandToService(commandService, VSMenuCmdSet, ToolWindowCommandId, this.ShowToolWindow); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarAddCommandId, package.ToolWindowViewModel.AddEntryCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarAddGroupCommandId, package.ToolWindowViewModel.AddGroupCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarRemoveCommandId, package.ToolWindowViewModel.RemoveEntriesCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarMoveUpCommandId, package.ToolWindowViewModel.MoveEntriesUpCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarMoveDownCommandId, package.ToolWindowViewModel.MoveEntriesDownCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarCopyCommandlineCommandId, package.ToolWindowViewModel.CopyCommandlineCommand); AddToggleCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarShowAllProjectsCommandId, package.ToolWindowViewModel.ShowAllProjectsCommand, () => package.ToolWindowViewModel.TreeViewModel.ShowAllProjects); } }
/// <summary> /// Initializes a new instance of the <see cref="Commands"/> class. /// Adds our command handlers for menu (commands must exist in the command table file) /// </summary> /// <param name="package">Owner package, not null.</param> private Commands(CmdArgsPackage package) { if (package == null) { throw new ArgumentNullException(nameof(package)); } this.package = package; OleMenuCommandService commandService = this.ServiceProvider.GetService(typeof(IMenuCommandService)) as OleMenuCommandService; if (commandService != null) { AddCommandToService(commandService, VSMenuCmdSet, ToolWindowCommandId, this.ShowToolWindow); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarAddCommandId, package.ToolWindowViewModel.AddEntryCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarRemoveCommandId, package.ToolWindowViewModel.RemoveEntriesCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarMoveUpCommandId, package.ToolWindowViewModel.MoveEntriesUpCommand); AddCommandToService(commandService, CmdArgsToolBarCmdSet, ToolbarMoveDownCommandId, package.ToolWindowViewModel.MoveEntriesDownCommand); AddCommandToService(commandService, KeyBindingsCmdSet, KeyBindingAddCmdId, package.ToolWindowViewModel.AddEntryCommand); } }
/// <summary> /// Initializes the singleton instance of the command. /// </summary> /// <param name="package">Owner package, not null.</param> public static void Initialize(CmdArgsPackage package) { Instance = new Commands(package); }