Exemple #1
0
        void CreateConsoleView()
        {
            Debug.Assert(evaluator != null);

            view = new CSharpInteractiveConsoleView(evaluator);

            OnCustomOutputPadFontChanged(null, EventArgs.Empty);

            view.ConsoleInput += OnConsoleInput;
            view.ShadowType    = Gtk.ShadowType.None;
            view.ShowAll();

            IdeApp.Preferences.CustomOutputPadFont.Changed += OnCustomOutputPadFontChanged;
        }
Exemple #2
0
 public CSharpInteractiveConsoleCompletionWidget(CSharpInteractiveConsoleView view)
 {
     this.view = view;
     TextView  = view.GetTextView();
 }