C#编程的NOTEBOOK记事本应用程序是一款利用C#语言开发的实用软件,提供简洁高效的笔记记录功能。用户可以轻松创建、编辑和管理个人或工作相关的备忘录,并支持文件保存与打开操作,界面友好且易于上手。
```csharp
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace NoteBook
{
///
/// About 的摘要说明。
///
public class About : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.Label label5;
///
/// 必需的设计器变量。
///
private System.ComponentModel.Container components = null;
public About()
{
// Windows 窗体设计器支持所必需的
InitializeComponent();
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
}
///
/// 清理所有正在使用的资源。
///
protected override void Dispose(bool disposing)
{
if (disposing)
{
if(components != null)
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(About));
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.label5 = new System.Windows.Forms.Label();
// label1
this.label1.ForeColor = System.Drawing.Color.Red;
this.label1.Image = ((System.Drawing.Image)(resources.GetObject(label1.Image)));
this.label1.Location = new System.Drawing.Point(0, 0);
this.label1.Name = label1;
this.label1.Size = new System.Drawing.Size(496, 128);
this.label1.TabIndex = 0;
// label2
this.label2.Font = new System.Drawing.Font(华文新魏, 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
this.label2.Location = new System.Drawing.Point(16, 147);
this.label2.Name = label2;
this.label2.Size = new System.Drawing.Size(192, 32);
this.label2.TabIndex = 1;
// label3
this.label3.Font = new System.Drawing.Font(华文行楷, 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
this.label3.ForeColor = System.Drawing.Color.RoyalBlue;
this.label3.Location = new System.Drawing.Point(16, 224);
this.label3.Name = label3;
this.label3.Size = new System.Drawing.Size(232, 24);
this.label3.TabIndex = 2;
// label4
this.label4.Font = new System.Drawing.Font(华文新魏, 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
this.label4.Location = new System.Drawing.Point(240, 151);
this.label4.Name = label4;
this.label4.Size = new System.Drawing.Size(248, 32);
this.label4.TabIndex = 3;
// label5
this.label5.Image = ((System.Drawing.Image)(resources.GetObject(label5.Image)));
this.label5.Location = new System.Drawing.Point(256, 197);
this.label5.Name = label5;
this.label5.Size = new System.Drawing.Size(240, 64);
this.label5.TabIndex = 4;
// About
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.BackColor = System.Drawing.Color.Black;
this.ClientSize = new System.Drawing.Size(496, 262);
this.Controls.Add(this.label5);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.ForeColor = System.Drawing.Color.Red;
this.Name = About;
this.Text = 关于我的记事本;
}
#endregion
}
}
```