码迷,mamicode.com
首页 > Windows程序 > 详细

向WinForm程序传递命令行参数以及让程序后台运行的

时间:2014-11-11 09:18:10      阅读:404      评论:0      收藏:0      [点我收藏+]

标签:winform   style   blog   io   color   ar   sp   for   div   

 1  [STAThread]
 2         static void Main(string[] args)
 3         {
 4             Application.EnableVisualStyles();
 5             Application.SetCompatibleTextRenderingDefault(false);
 6             if (args.Length == 0)
 7                 Application.Run(new Form1());
 8             else
 9                 Application.Run(new Form1(args));
10         }
public partial class Form1 : Form
    {
        string[] args = null;
        public Form1()
        {
            InitializeComponent();
        }
        public Form1(string[] args)
        {
            InitializeComponent();
            this.args = args;
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            if (args != null)
            {
                for (int i = 0; i < args.Length; i++)
                    MessageBox.Show(args[i]);
            }          
            MessageBox.Show("output done!");
            System.Environment.Exit(0); // exit program
        }
    }

 

向WinForm程序传递命令行参数以及让程序后台运行的

标签:winform   style   blog   io   color   ar   sp   for   div   

原文地址:http://www.cnblogs.com/aoun/p/4088653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!