Exemplo n.º 1
0
        // "state" parameter is the object returned from MyPackage.InitializeToolWindowAsync
        public ApiConfigToolWindow(ApiGeneratorState state) : base()
        {
            Caption            = Title;
            BitmapImageMoniker = KnownMonikers.ImageIcon;

            Content = new ApiConfigToolWindowControl(state);
        }
        public ApiConfigToolWindowControl(ApiGeneratorState state)
        {
            _controller = new ApiController(state);

            InitializeComponent();

            lblProjectName.Content = "";
        }