コード例 #1
0
        /// <summary>
        /// Standard constructor for the tool window.
        /// </summary>
        public ManagedThreadStacksToolWindow()
            : 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 = 399;
            this.BitmapIndex = 0;

            control = new ManagedThreadStacksControl();
        }
コード例 #2
0
        /// <summary>
        /// Standard constructor for the tool window.
        /// </summary>
        public ManagedThreadStacksToolWindow() :
            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 = 399;
            this.BitmapIndex      = 0;

            control = new ManagedThreadStacksControl();
        }