Program.cs
上传用户:dzysfj
上传日期:2021-09-14
资源大小:118k
文件大小:0k
源码类别:

菜单

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4. namespace SystemMenuDemo
  5. {
  6.     static class Program
  7.     {
  8.         /// <summary>
  9.         /// 应用程序的主入口点。
  10.         /// </summary>
  11.         [STAThread]
  12.         static void Main()
  13.         {
  14.             Application.EnableVisualStyles();
  15.             Application.SetCompatibleTextRenderingDefault(false);
  16.             Application.Run(new FormSystemMenuDemo());
  17.         }
  18.     }
  19. }