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

📄 testform3.cs

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

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

public class TestForm3 : Form {

  // (When we add eventually attach components to the Form - labels, buttons,
  // and so forth -- they will be declared here, as FIELDS of the 
  // TestForm4 class.)
 
  // Constructor.
  public TestForm3() {
    // Set the size of the Form using the Height
    // and Width properties.
    this.Height = 200;
    this.Width = 200;

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

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

  // Note that there is no Main() method.
}

⌨️ 快捷键说明

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