我有一个独立的示例程序,在执行时给终端输入" 0"然后显示另一个基本上是相机功能的窗口。
进入命令行参数的摄像机程序:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using mv.impact.acquire;
#if USE_DISPLAY
using mv.impact.acquire.display;
#endif // #if USE_DISPLAY
using mv.impact.acquire.examples.helper;
namespace SW_FormsApplication3
{
class ContinousCapture
{
public static void StartCamera(string[] args)
{
//Acquire camera image and display it on window
}//End Method
}//End class
}//End namespace
我的工具条按钮用于调用方法:
private void toolStripButton2_Click(object sender, EventArgs e)
{
ContinousCapture.StartCamera();
}
我想在我的应用程序中实现相同的功能但在我的情况下,我应该单击表单上的按钮(工具栏按钮),以便我可以显示图像窗口。我怎样才能实现这一点,这意味着如何调用一个接受命令行参数的方法?
我已经尝试过,ContinousCapture.StartCamera(null)
;我已经解决了PDB文件的问题,但无法弄清楚控制台没有出现的原因。
答案 0 :(得分:3)
简单ContinousCapture.StartCamera(null);