コード例 #1
0
ファイル: PanelOutput.cs プロジェクト: alexfordc/Au
    //public SciControl Output => _c;

    public PanelOutput()
    {
        this.AccessibleName = this.Name = "Output";
        _c = new _SciOutput(this);
        _c.AccessibleName = _c.Name = "Output_text";
        _c.Dock           = DockStyle.Fill;
        this.Controls.Add(_c);

        _history = new Queue <OutServMessage>();
        Program.OutputServer.SetNotifications(_GetServerMessages, this);
    }
コード例 #2
0
    public PanelOutput()
    {
        //this.UiaSetName("Output panel"); //no UIA element for Panel. Use this in the future if this panel will be : UserControl.

        _c = new _SciOutput(this)
        {
            Name = "Output_text"
        };
        this.Children.Add(_c);
        _history = new Queue <PrintServerMessage>();
        App.Commands.BindKeysTarget(this, "Output");
        _leaf = Panels.PanelManager["Output"];
    }