예제 #1
0
 void OnScriptOutput(object sender, ScriptOutputEventArgs e)
 {
     m_outputContent.AppendText(e.Message);
 }
예제 #2
0
 private void OnScriptOutput(string message)
 {
     if (ScriptOutput != null)
       {
     var args = new ScriptOutputEventArgs { Message = message };
     ScriptOutput(this, args);
       }
 }