在Winform动态启动、控制台命令行的方法
需求
winform 程序输出类型为 windows 程序(不是命令行程序)
在运行时想输入一些信息编译开发调试,如何实现这一功能
解答:
allocconsole、freeconsole 这两个 api 可以在任何时候调用和关闭 命令行。
代码演示:
api 部分
using system.runtime.interopservices;
namespace windowsformsapplication1
{
public partial class nativemethods
{
/// <summary>
/// 启动控制台
/// </summary>
/// <returns></returns>
[dllimport("kernel32.dll")]
public static extern bool allocconsole();
/// <summary>
/// 释放控制台
/// </summary>
/// <returns></returns>
[dllimport("kernel32.dll")]
public static extern bool freeconsole();
}
}
启动参数的实现
using system;
using system.windows.forms;
namespace windowsformsapplication1
{
static class program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[stathread]
static void main(string[] args)
{
try
{
if (args.length > 0 && args[0].tolower() == "-c")
{//通过命令行 xxxx.exe -c 参数启动,console
//注意:不用 main(string[] args)、system.environment.getcommandlineargs(); 也可以取得命令行参数在任何地方
//启动
nativemethods.allocconsole();
console.writeline("控制台以启动");
}
application.enablevisualstyles();
application.setcompatibletextrenderingdefault(false);
application.run(new form1());
}
finally
{
//关闭 (如果在这个位置其实写不写都行了)
nativemethods.freeconsole();
}
}
}
}
程序实现
using system;
using system.windows.forms;
namespace windowsformsapplication1
{
public partial class form1 : form
{
public form1()
{
initializecomponent();
}
private void btnopenconsole_click(object sender, eventargs e)
{
//开启控制台
nativemethods.allocconsole();
}
private void btncloseconsole_click(object sender, eventargs e)
{
//关闭控制台
nativemethods.freeconsole();
}
private void btnout_click(object sender, eventargs e)
{
//模拟输出
console.writeline(textbox1.text);
}
}
}
代码下载:(vs2008 如果其他版本vs请自行修改)
http://xiazai.jb51.net/201302/other/winformshellconsole_vs08.rar
最后:
其实代码很简单,不过很适合在运行时输出一些临时调试信息
用gui画图的操作一般下断点很容易影响print 事件的情况
,有时候在客户那里程序问题在上打开控制台输出一些调试信息看着比较方便;
而且控制太没有线程限制的,所以使用起来要比单独的日志窗口方便、而且容易复制内容,还支持 paus 键;