Esempio n. 1
0
        public UnitTreeLister(
            ICommandService commandService,
            IControlHostService controlHostService,
            IContextRegistry contextRegistry,
            ISettingsService settings,
            TextEditing.TextEditor textEditor
            )
            : base(commandService)
        {
            m_controlHostService = controlHostService;
            m_contextRegistry    = contextRegistry;
            this.settings        = settings;

            this.TreeControl.ImageList = ResourceUtil.GetImageList16();

            TreeView = new UnitView();
        }
Esempio n. 2
0
        public ProjectTreeLister(
            ICommandService commandService,
            IControlHostService controlHostService,
            IContextRegistry contextRegistry,
            ISettingsService settings,
            TextEditing.TextEditor textEditor
          )
            : base(commandService)
        {
            this.commandService = commandService;
            m_controlHostService = controlHostService;
            m_contextRegistry = contextRegistry;
            this.settings = settings;
            this.textEditor = textEditor;

            this.TreeControl.ImageList = ResourceUtil.GetImageList16();
        }
Esempio n. 3
0
        public ProjectTreeLister(
            ICommandService commandService,
            IControlHostService controlHostService,
            IContextRegistry contextRegistry,
            ISettingsService settings,
            TextEditing.TextEditor textEditor
            )
            : base(commandService)
        {
            this.commandService  = commandService;
            m_controlHostService = controlHostService;
            m_contextRegistry    = contextRegistry;
            this.settings        = settings;
            this.textEditor      = textEditor;

            this.TreeControl.ImageList = ResourceUtil.GetImageList16();
        }