A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. private void Form1_Load(object sender, EventArgs e)
  2.         {
  3.             string appPath = Application.StartupPath + "\\app.dll";
  4.             if (File.Exists(appPath))
  5.             {
  6.                 //配置文件存在
  7.                 StreamReader sr = new StreamReader(appPath);
  8.                 int x = Convert.ToInt32(sr.ReadLine());
  9.                 int y = Convert.ToInt32(sr.ReadLine());
  10.                 int w = Convert.ToInt32(sr.ReadLine());
  11.                 int h = Convert.ToInt32(sr.ReadLine());
  12.                 int r = Convert.ToInt32(sr.ReadLine());
  13.                 int g = Convert.ToInt32(sr.ReadLine());
  14.                 int b = Convert.ToInt32(sr.ReadLine());

  15.                 this.Location = new Point(x, y);
  16.                 this.Size = new Size(w, h);
  17.                 txtText.ForeColor = Color.FromArgb(r, g, b);
  18.                 sr.Close();
  19.                
  20.                
  21.             }
  22.         }

  23.       

  24.         private void 撤销ToolStripMenuItem_Click(object sender, EventArgs e)
  25.         {
  26.            //关于文本撤销的到上一步的是实现方法
  27.         }

  28.         
复制代码
关于文本撤销的到上一步的是实现方法,就像Visual Studio工具一样如果当前这一行写错了,按一下Ctrl+Z撤销上一步的操作。

评分

参与人数 1技术分 +1 收起 理由
苏波 + 1

查看全部评分

1 个回复

倒序浏览
点击左上角菜单——编辑——撤销

无标题.png (144.97 KB, 下载次数: 0)

无标题.png
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马