Пример #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="TestExplorerToolWindow"/> class.
        /// </summary>
        public TestExplorerToolWindow()
        {
            // Set the window title reading it from the resources.
            this.Caption = Resources.TestExplorerToolWindowTitle;
            // 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;

            mcs = GetService(typeof(IMenuCommandService)) as OleMenuCommandService;

            TestExplorerControl = new TestExplorerControl(this);

            base.Content = TestExplorerControl;

            this.ToolBar = new CommandID(GuidList.GuidOpenCoverTestExplorerContextMenuCommandSet, PkgCmdIDList.OpenCoverTestExplorerToolbar);
        }
		/// <summary>
		/// Initializes a new instance of the <see cref="TestExplorerToolWindow"/> class.
		/// </summary>
		public TestExplorerToolWindow()
		{
			// Set the window title reading it from the resources.
			this.Caption = Resources.TestExplorerToolWindowTitle;
			// 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;

			mcs = GetService(typeof(IMenuCommandService)) as OleMenuCommandService;

			TestExplorerControl = new TestExplorerControl(this);

			base.Content = TestExplorerControl;

			this.ToolBar = new CommandID(GuidList.GuidOpenCoverTestExplorerContextMenuCommandSet, PkgCmdIDList.OpenCoverTestExplorerToolbar);
		}