Interaction logic for MyControl.xaml
Inheritance: System.Windows.Controls.UserControl
        /// <summary>
        /// Standard constructor for the tool window.
        /// </summary>
        public AppVeyorWindow()
            : base(null)
        {
            ToolBar = new CommandID(new Guid("6cb5e405-3793-4a69-8acd-95c5f5f25df0"), 0x1000);
            // Set the window title reading it from the resources.
            Caption = Constants.EXTENSION_NAME;
            // 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.
            BitmapResourceID = 301;
            BitmapIndex = 1;

            // 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.
            Content = new AppVeyorWindowContent();
        }
        /// <summary>
        /// Standard constructor for the tool window.
        /// </summary>
        public AppVeyorWindow() :
            base(null)
        {
            ToolBar = new CommandID(new Guid("6cb5e405-3793-4a69-8acd-95c5f5f25df0"), 0x1000);
            // Set the window title reading it from the resources.
            Caption = Constants.EXTENSION_NAME;
            // 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.
            BitmapResourceID = 301;
            BitmapIndex      = 1;

            // 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.
            Content = new AppVeyorWindowContent();
        }