首页 WinForm/WPF winform按ctrl+F5的时候如何运行指定第一个窗体

winform按ctrl+F5的时候如何运行指定第一个窗体

作者:胡同里的砖头 围观群众:2169 更新于:2013-12-19

找自己自己根目录下面的Program.cs文件

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

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

Application.Run(new F()); 括号里面的窗体名称改下就可以了

  • 本文标题: winform按ctrl+F5的时候如何运行指定第一个窗体
  • 文章分类:【WinForm/WPF】
  • 非特殊说明,本文版权归【胡同里的砖头】个人博客 所有,转载请注明出处.
留言评论
站点声明:
1、本站【胡同里的砖头】个人博客,借鉴网上一些博客模板,取其各优点模块自行拼装开发,本博客开发纯属个人爱好。
2、所有笔记提供给广大用户交流使用,可转载,可复制,纯个人开发所遇问题锦集记录使用
Copyright © huzlblog.com All Rights Reserved. 备案号:苏ICP备2021056683号-8