Winform基础详解三——关于program.cs
2021-03-19 11:25
标签:ace 无法 可见 rms task info read eric 文件名 program是整个Winform程序的主入口点。 Winform基础详解三——关于program.cs 标签:ace 无法 可见 rms task info read eric 文件名 原文地址:https://www.cnblogs.com/mengmajun/p/14553516.htmlWinform基础详解三——关于program.cs
[STAThread]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace winform
{
static class Program
{
///
Application.Run(new MainForm());
这句话中,new后面写想启动窗体的类名
文章标题:Winform基础详解三——关于program.cs
文章链接:http://soscw.com/index.php/essay/66214.html