简易记事本---C#窗体

 
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace xiezhiban
{
public partial class Form1 : Form
{
string s;
public Form1()
{
InitializeComponent();
}
private void 复制ToolStripMenuItem_Click(object sender, EventArgs e)
{
s = this.richTextBox1.SelectedText;
}

private void 剪切ToolStripMenuItem_Click(object sender, EventArgs e)
{
s = this.richTextBox1.SelectedText;
this.richTextBox1.SelectedText = "";
}

private void 粘贴ToolStripMenuItem_Click(object sender, EventArgs e)
{
this.richTextBox1.SelectedText += s;
}

private void 退出ToolStripMenuItem_Click(object sender, EventArgs e)
{
Application.Exit();
}

private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenFileDialog ofd =new OpenFileDialog();
ofd.Filter = "text|*.Txt|rtf|*.rtf";
ofd.Multiselect = false;
ofd.ShowDialog();
string fn = ofd.FileName;
if (fn != "")
{
this.richTextBox1.LoadFile(fn,RichTextBoxStreamType.PlainText);
}

}

private void 保存ToolStripMenuItem_Click(object sender, EventArgs e)
{
SaveFileDialog sfd =new SaveFileDialog();
sfd.Filter = "text|*.Txt|rtf|*.rtf";
sfd.ShowDialog();
string fn = sfd.FileName;
if (fn != "")
{
this.richTextBox1.SaveFile(fn,RichTextBoxStreamType.PlainText);
}
}

private void 字体ToolStripMenuItem_Click(object sender, EventArgs e)
{
FontDialog zt = new FontDialog();
zt.Font=richTextBox1.SelectionFont;
if (zt.ShowDialog() == DialogResult.OK)
richTextBox1.SelectionFont = zt.Font;
}

private void 颜色ToolStripMenuItem_Click(object sender, EventArgs e)
{
ColorDialog afo = new ColorDialog();
afo.Color= richTextBox1.SelectionColor;
if (afo.ShowDialog() == DialogResult.OK)
richTextBox1.SelectionColor = afo.Color;

}

private void 删除ToolStripMenuItem_Click(object sender, EventArgs e)
{
this.richTextBox1.SelectedText = "";
}

private void 时间日期ToolStripMenuItem_Click(object sender, EventArgs e)
{
this.richTextBox1.SelectedText += DateTime.Now.ToString();
}

private void Form1_Load(object sender, EventArgs e)
{

}

private void timer1_Tick(object sender, EventArgs e)
{
this.label1.Text = DateTime.Now.ToString();
}
}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值