模仿微软的记事本软件,用winForm创建一个记事本程序

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;

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

猜你喜欢

转载自www.cnblogs.com/programme-maker/p/12021038.html