Beispiel #1
0
        /// <summary>
        /// Standard constructor for the tool window.
        /// </summary>
        public ToolWindow() :
            base(null)
        {
            this.ToolBar = new CommandID(GuidList.guidTFS2010InterfaceCmdSet, PkgCmdIDList.TFS2010InterfaceToolbar);

            // Set the window title reading it from the resources.
            this.Caption = Resources.ToolWindowTitle;
            // Set the image that will appear on the tab of the window frame
            // when docked with an other window
            // The resource ID correspond to the one defined in the resx file
            // while the Index is the offset in the bitmap strip. Each image in
            // the strip being 16x16.
            this.BitmapResourceID = 301;
            this.BitmapIndex      = 1;


            // Add all the commands to the toolbar in the tool window
            OleMenuCommandService oOleMenuCommandService = (OleMenuCommandService)GetService(typeof(IMenuCommandService));

            if (oOleMenuCommandService != null)
            {
                CommandID refreshID          = new CommandID(GuidList.guidTFS2010InterfaceCmdSet, (int)PkgCmdIDList.cmdidRefreshButton);
                CommandID solutionSearchID   = new CommandID(GuidList.guidTFS2010InterfaceCmdSet, (int)PkgCmdIDList.cmdidSolutionSearchButton);
                CommandID checkedOutSearchID = new CommandID(GuidList.guidTFS2010InterfaceCmdSet, (int)PkgCmdIDList.cmdidCheckedOutSearchButton);

                OleMenuCommand refreshMenuItem    = new OleMenuCommand(RefreshButtonCallback, refreshID);
                OleMenuCommand solutionMenuItem   = new OleMenuCommand(SolutionSearchButtonCallback, solutionSearchID);
                OleMenuCommand checkedOutMenuItem = new OleMenuCommand(CheckedOutSearchButtonCallback, checkedOutSearchID);

                oOleMenuCommandService.AddCommand(refreshMenuItem);
                oOleMenuCommandService.AddCommand(solutionMenuItem);
                oOleMenuCommandService.AddCommand(checkedOutMenuItem);
            }

            // 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.
            control      = new TFSUserControl();
            base.Content = control;
        }
Beispiel #2
0
 public TestSearchTask(uint dwCookie, IVsSearchQuery pSearchQuery, IVsSearchCallback pSearchCallback, TFSUserControl control)
     : base(dwCookie, pSearchQuery, pSearchCallback)
 {
     this.control = control;
 }