コード例 #1
0
 private static void Wrapper_Failed(object sender, IncommingTextEventArgs e)
 {
     Console.WriteLine("F> " + e.IncommingText);
 }
コード例 #2
0
 private void CmdWrapper_OnIncommingText(object sender, IncommingTextEventArgs e)
 {
     CmdOutputString += TextUtils.ConsoleToWPF(e.IncommingText) + System.Environment.NewLine;
 }
コード例 #3
0
 private void Wrapper_OnIncommingText(object sender, IncommingTextEventArgs e)
 {
     commandModel.OutText += e.IncommingText + System.Environment.NewLine;
 }
コード例 #4
0
 private void CmdWrapper_Failed(object sender, IncommingTextEventArgs e)
 {
     ProcessFailed = true;
 }