📄 class1.cs
字号:
namespace AboutBoxExample
{
using System;
using System.WinForms;
/// <summary>
/// Summary description for Class1.
/// </summary>
public class AboutBox:Form
{
public string Author; // 显示作者
public string AppName; // 显示应用程序的名称
public string Version; // 应用程序的版本号
public string Date; // 应用程序开发日期
public AboutBox()
{
//
// TODO: Add Constructor Logic here
//
}
public void ShowAboutBox()
{
InitDialog();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -