Пример #1
0
        public MyToolWindow()
            : base(null)
        {
            this.Caption = Resources.ToolWindowTitle;
            this.BitmapResourceID = 301;
            this.BitmapIndex = 1;

            var bootstrapper = new CodingDojoHelper.Bootstrapper();
            bootstrapper.Run();

            var shell = bootstrapper.Shell;
            shell.Background = new SolidColorBrush(Colors.Black);

            base.Content = shell;
        }
Пример #2
0
        public MyToolWindow() :
            base(null)
        {
            this.Caption          = Resources.ToolWindowTitle;
            this.BitmapResourceID = 301;
            this.BitmapIndex      = 1;

            var bootstrapper = new CodingDojoHelper.Bootstrapper();

            bootstrapper.Run();

            var shell = bootstrapper.Shell;

            shell.Background = new SolidColorBrush(Colors.Black);

            base.Content = shell;
        }