使用C#怎么实现一个文本编辑器-古蔺大橙子建站
RELATEED CONSULTING
相关咨询
选择下列产品马上在线沟通
服务时间:8:30-17:00
你可能遇到了下面的问题
关闭右侧工具栏

新闻中心

这里有您想知道的互联网营销解决方案
使用C#怎么实现一个文本编辑器

使用C#怎么实现一个文本编辑器?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

创新互联建站是一家集网站建设,七里河企业网站建设,七里河品牌网站建设,网站定制,七里河网站建设报价,网络营销,网络优化,七里河网站推广为一体的创新建站企业,帮助传统企业提升企业形象加强企业竞争力。可充分满足这一群体相比中小企业更为丰富、高端、多元的互联网需求。同时我们时刻保持专业、时尚、前沿,时刻以成就客户成长自我,坚持不断学习、思考、沉淀、净化自己,让我们为更多的企业打造出实用型网站。

程序源代码:

//form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Txt_EditApp
{
 public partial class Form1 : Form
 {
  public Form1()
  {
   InitializeComponent();
  }
  //Open file 菜单选项
  private void openFileToolStripMenuItem_Click(object sender, EventArgs e)
  {
   openFileDialog1.Filter = "txt files(*.txt)|*.txt";
   if(openFileDialog1.ShowDialog()==DialogResult.OK)
   {
    richTextBox1.LoadFile(openFileDialog1.FileName, RichTextBoxStreamType.PlainText);
   }
  }
  //Save file 菜单选项
  private void saveFileToolStripMenuItem_Click(object sender, EventArgs e)
  {
   saveFileDialog1.Filter = "txt files(*.txt)|*.txt";
   if(saveFileDialog1.ShowDialog()==DialogResult.OK)
   {
    richTextBox1.SaveFile(saveFileDialog1.FileName, RichTextBoxStreamType.PlainText);
   }
  }
  //exit file 菜单选项
  private void exitToolStripMenuItem_Click(object sender, EventArgs e)
  {
   Close();
  }
  //About 菜单选项
  private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
  {
   Form2 frm = new Form2();
   frm.ShowDialog();
  }
 }
}


//form2.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Txt_EditApp
{
 public partial class Form2 : Form
 {
  public Form2()
  {
   InitializeComponent();
  }

  private void label2_Click(object sender, EventArgs e)
  {

  }
 }
}

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注创新互联行业资讯频道,感谢您对创新互联的支持。


本文名称:使用C#怎么实现一个文本编辑器
文章分享:http://scgulin.cn/article/ppposs.html