C#几行代码干掉一台电脑[无限弹窗]

2022-09-19 15:10:27 浏览数 (1)

使用C#中的Windows窗体应用程序写一个无限弹窗

  • 第一步:打开Visual Studio新建项目
  • 第二部:简单设计一下窗体后打开Program.cs文件
  • 第三步:编写以下代码:
代码语言:javascript复制
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

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

            while (true)
            {
                Form1 form1 = new Form1();
                form1.Show();
            }
        }
    }
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

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

            while (true)
            {
                Form1 form1 = new Form1();
                form1.Show();
            }
        }
    }
}

注意一定要把Application.Run(new Form1());这行代码删除或注释掉 原理:用一个while(true)无限循环来创建窗体对象,对象名.Show()方法不断地打开窗体

0 人点赞