Beispiel #1
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);
            if (!IsDesignMode)
            {
                _codeViewerActions = new CodeViewerActions(this, false);

                ctrlFindOccurrences.Viewer     = this;
                splitContainer.Panel2Collapsed = true;
            }
        }
Beispiel #2
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);
            if (!IsDesignMode)
            {
                _codeViewerActions = new CodeViewerActions(this, false);

                ctrlFindOccurrences.Viewer     = this;
                splitContainer.Panel2Collapsed = true;

                this.SymbolProvider = DebugWorkspaceManager.SymbolProvider;
                DebugWorkspaceManager.SymbolProviderChanged += UpdateSymbolProvider;
            }
        }
Beispiel #3
0
        public ctrlDebuggerCode()
        {
            InitializeComponent();
            _tooltipManager = new CodeTooltipManager(this, this.ctrlCodeViewer);

            bool designMode = (LicenseManager.UsageMode == LicenseUsageMode.Designtime);

            if (!designMode)
            {
                _codeViewerActions = new CodeViewerActions(this, false);

                ctrlFindOccurrences.Viewer     = this;
                splitContainer.Panel2Collapsed = true;
            }
        }