testform1.cs
来自「学生注册管理系统」· CS 代码 · 共 25 行
CS
25 行
// TestForm1.cs
using System;
using System.Windows.Forms;
using System.Drawing;
public class TestForm1 {
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 = 300;
simpleForm.Width = 300;
// Add a title to the Form using the Text property
simpleForm.Text = "Whee!!!";
// Use the Application class Run() method to launch
// the Form
Application.Run(simpleForm);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?