日期:2014-05-17 浏览次数:20998 次
public static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.DoEvents();
Application.Run(new Form1(args));
}
public Form1(string[] args)
{
initializeComponent();
......
}
private void toolStripMenuItem39_Click(object sender, EventArgs e)
{
new DocumentProcessing.Form1(new string[]{"1","2","3"}).ShowDialog();
}
private void toolStripMenuItem39_Click(object sender, EventArgs e)
{
new DocumentProcessing.Form1(string[] args).ShowDialog();
}
string[] args="";
private void toolStripMenuItem39_Click(object sender, EventArgs e) { new DocumentProcessing.Form1(args).ShowDialog(); }
public string[] aaa={};
private void toolStripMenuItem39_Click(object sender, EventArgs e)
{
new DocumentProcessing.Form1(aaa).ShowDialog();