⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testform2.cs

📁 学生注册管理系统
💻 CS
字号:
// TestForm2.cs

using System;
using System.Windows.Forms;
using System.Drawing;

public class TestForm2 {
  static void Main() {
    // Create a Form  by calling the Form constructor
    Form simpleForm = new Form();

    // Set the size of the Form using the Height
    // and Width properties
    simpleForm.Height = 200;
    simpleForm.Width = 200;

    // Add a title to the Form using the Text property
    simpleForm.Text = "Whee!!!";

    // Center the Form on the desktop
    simpleForm.StartPosition = FormStartPosition.CenterScreen;
    simpleForm.Visible = true;

    // Use the Application class Run() method to launch
    // the Form
    Application.Run(simpleForm);
  }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -