📄 frmaboutus.cs
字号:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace SMS.Help
{
public partial class frmAboutUs : Form
{
public frmAboutUs()
{
InitializeComponent();
}
private void frmAboutUs_Load(object sender, EventArgs e)
{
string path = Application.StartupPath + "\\AboutUs.txt";
System.IO.StreamReader reader = new System.IO.StreamReader(path, System.Text.Encoding.Default);
this.txtAboutUs.Text = reader.ReadToEnd();
reader.Close();
}
private void btnExit_Click(object sender, EventArgs e)
{
this.Close();
}
private void frmAboutUs_FormClosed(object sender, FormClosedEventArgs e)
{
this.Close();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -