示例#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);
       }
 }