跳转到内容

C# 编程/ .NET 框架/Windows 窗体/控件/窗体

来自维基教科书,开放的书籍,开放的世界

System.Windows.Form 类是 Windows 应用程序的关键图形构建块。它提供了包含按钮、菜单、图标和标题栏的视觉框架。像 Visual C# 和 SharpDevelop 这样的集成开发环境 (IDE) 可以帮助创建图形应用程序,但了解如何手动进行操作很重要。

using System.Windows.Forms;
public class ExampleForm : Form    // inherits from System.Windows.Forms.Form
{
   public static void Main()
   {
       ExampleForm wikibooksForm = new ExampleForm();
       wikibooksForm.Text = "I Love Wikibooks";// specify title of the form
       wikibooksForm.Width = 400;              // width of the window in pixels
       wikibooksForm.Height = 300;             // height in pixels
       Application.Run(wikibooksForm);         // display the form
   }
}

上面的示例创建了一个简单的窗口,标题栏中显示文本“我爱维基教科书”。像上面的示例这样的自定义窗体类继承自 System.Windows.Forms.Form 类。设置任何属性 TextWidthHeight 是可选的。如果注释掉这些行,您的程序将编译并成功运行,但它们使我们能够向窗体添加额外的控制。



华夏公益教科书