Newer
Older
RbFreqStand / RbFreqStandMeasure / Program.cs
TAN YUE on 18 Mar 2021 560 bytes 20210318 根据新版ui修改界面
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

namespace Casic.Birmm.RbFreqStandMeasure
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            // Application.Run(new RbFreqStandMeasureForm());
            Application.Run(new RbFreqStdMeas());
        }
    }
}