program.cs

来自「微软的行业应用解决方案示例」· CS 代码 · 共 33 行

CS
33
字号
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using HardwareDistributor.UI;
using System.Threading;
using System.Globalization;

namespace HardwareDistributor
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [MTAThread]
        static void Main(string[] args)
        {
            //extract input parameters
            string launcherWindowName = (args != null & args.Length > 0) ? args[0] : string.Empty;
            string targetWindowName = (args != null & args.Length > 1) ? args[1] : string.Empty;

            try
            {
                Application.Run(new Logon(launcherWindowName, targetWindowName));
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message, "Catastrophic Error");
                Business.Services.LogErrors(ex);
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?