// Events
 // Constructors
 // Methods
 // Event dispatchers
 private bool OnLineInput( string line )
 {
     var handler = LineInput;
     if ( null != handler ) {
         var ev = new LineInputEventArgs( line );
         handler( this, ev );
         return ev.AllowClear;
     }
     return true;
 }
        // Events

        // Constructors

        // Methods

        // Event dispatchers

        private bool OnLineInput(string line)
        {
            var handler = LineInput;

            if (null != handler)
            {
                var ev = new LineInputEventArgs(line);
                handler(this, ev);
                return(ev.AllowClear);
            }
            return(true);
        }
示例#3
0
 public void InputBar_LineInput( object sender, LineInputEventArgs ev )
 {
     Debug.Print( "PanelImpl.InputBar_LineInput: input line is '{0}'", ev.Line );
     InputProcessor.Process( ev.Line );
 }
 protected void InputBar_LineInput(object sender, LineInputEventArgs ev)
 {
     Debug.Print("ConsolePanel.InputBar_LineInput: input line is '{0}'", ev.Line);
     InputProcessor.Process(ev.Line);
 }
 protected void InputBar_LineInput(object sender, LineInputEventArgs ev)
 {
     Debug.Print("DebugPanel.InputBar_LineInput: input line is '{0}'", ev.Line);
 }
 private void InputBar_LineInput( object sender, LineInputEventArgs ev )
 {
     Debug.Print( "ConsolePanel.InputBar_LineInput: input line is '{0}'", ev.Line );
     _inputProcessor.Process( ev.Line );
 }
 protected void InputBar_LineInput( object sender, LineInputEventArgs ev )
 {
     Debug.Print( "DebugPanel.InputBar_LineInput: input line is '{0}'", ev.Line );
 }
示例#8
0
 public void InputBar_LineInput(object sender, LineInputEventArgs ev)
 {
     Debug.Print("PanelImpl.InputBar_LineInput: input line is '{0}'", ev.Line);
     InputProcessor.Process(ev.Line);
 }