/// <summary>
        /// Standard constructor for the tool window.
        /// </summary>
        public RdtEventWindowPane() :
            base(null)
        {
            // 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 the toolbar by specifying the Guid/MenuID pair corresponding to
            // the toolbar definition in the vsct file.
            this.ToolBar = new CommandID(GuidsList.guidRdtEventExplorerCmdSet, PkgCmdIDList.IDM_MyToolbar);
            // Specify that we want the toolbar at the top of the window
            this.ToolBarLocation = (int)VSTWT_LOCATION.VSTWT_TOP;
            control = new RdtEventControl();
        }
        /// <summary>
        /// Standard constructor for the tool window.
        /// </summary>
        public RdtEventWindowPane()
            : base(null)
        {
            // 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 the toolbar by specifying the Guid/MenuID pair corresponding to
            // the toolbar definition in the vsct file.
            this.ToolBar = new CommandID(GuidsList.guidRdtEventExplorerCmdSet, PkgCmdIDList.IDM_MyToolbar);
            // Specify that we want the toolbar at the top of the window
            this.ToolBarLocation = (int)VSTWT_LOCATION.VSTWT_TOP;
            control = new RdtEventControl();
        }