⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 program.cs

📁 微软的行业应用解决方案示例
💻 CS
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -