摘要:
思路 cmd 调用GUI截图工具代码如下public string ExeCommand(string commandText) { Process p = new Process(); p.StartInfo.FileName = "cmd.exe"; p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardInput = true; p.StartInfo.RedirectStandardOutput = true; p.StartInfo.RedirectStandardError = true 阅读全文
posted @ 2011-04-08 17:58
微雨杏花村
阅读(284)
评论(0)
推荐(0)
浙公网安备 33010602011771号