4、记事本

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;
using System.IO;

namespace jishibenwenjian
{
    public partial class jishiben : Form
    {
        public jishiben()
        {
            InitializeComponent();
        }
        #region//菜单栏
        private void textBox1_TextChanged(object sender, EventArgs e)
        {
            if (this.textBox1.Text.Length > 0)
            {
                撤消ToolStripMenuItem.Enabled = true;
                粘贴ToolStripMenuItem.Enabled = true;
                删除ToolStripMenuItem.Enabled = true;
                全选ToolStripMenuItem.Enabled = true;
                查找ToolStripMenuItem.Enabled = true;
                查找下一个ToolStripMenuItem.Enabled = true;
                替换ToolStripMenuItem.Enabled = true;
            }
            else
            {
                粘贴ToolStripMenuItem.Enabled = false;
                删除ToolStripMenuItem.Enabled = false;
                查找ToolStripMenuItem.Enabled = false;
                查找下一个ToolStripMenuItem.Enabled = false;
            }
        }
        #endregion
        #region
        private void textBox1_Click(object sender, EventArgs e)
        {
            if (this.textBox1.Text.Length > 0)
            {
                剪切ToolStripMenuItem.Enabled = true;
                复制ToolStripMenuItem.Enabled = true;
            }
            else
            {
                剪切ToolStripMenuItem.Enabled = false;
                复制ToolStripMenuItem.Enabled = false;
            }
        }
        #endregion
        #region//编辑
        private void 撤消ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (textBox1.CanUndo == true)
            {
                textBox1.Undo();
                //textBox1.ClearUndo();
            }
        }
        private void 剪切ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.Cut();
        }
        private void 复制ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.Copy();
        }
        private void 粘贴ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.Paste();
        }
        private void 删除ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.SelectedText = "";
        }
        private void 全选ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            textBox1.SelectAll();
        }
        private void 查找ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            chazhao ff = new chazhao(this.textBox1.SelectedText, this);
            ff.Owner = this;
            ff.Show();
        }
        private void 替换ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            tihuan t = new tihuan(this.textBox1.SelectedText, this);
            t.Owner = this;
            t.Show();
        }
        #endregion
        #region//文件
        private void 打开OCtrlOToolStripMenuItem_Click(object sender, EventArgs e)
        {
            DialogResult dr = openFileDialog1.ShowDialog();
            if (dr == DialogResult.OK)
            {
                string filename = openFileDialog1.FileName;
                StreamReader sr = new StreamReader(filename, Encoding.Default);
                this.textBox1.Text = sr.ReadToEnd();
                sr.Close();
                FileName = filename;
            }
        }
        private void 新建NCtrlNToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (this.textBox1.Text.Length > 0)
            {
                saveFileDialog1.Filter = "文本文件(*.txt)|*.txt|word文档(*.doc)|*.doc";
                DialogResult drg = MessageBox.Show("是否进行保存?", "保存对话框", MessageBoxButtons.YesNo);
                if (DialogResult.Yes == drg)
                {
                    if (FileName == null)
                    {
                        DialogResult dr = saveFileDialog1.ShowDialog();
                        if (dr == DialogResult.OK)
                        {
                            string filename = saveFileDialog1.FileName;
                            StreamWriter sw = new StreamWriter(filename);
                            sw.Write(this.textBox1.Text);
                            sw.Close();
                        }
                    }
                    else
                    {
                        StreamWriter sw = new StreamWriter(FileName);
                        sw.Write(this.textBox1.Text);
                        sw.Close();
                    }
                }
            }
            FileName = null;
            this.textBox1.Text = "";
        }
        private string FileName;
        private void 保存SCtrlSToolStripMenuItem_Click(object sender, EventArgs e)
        {
            saveFileDialog1.Filter = "文本文件(*.txt)|*.txt|word文档(*.doc)|*.doc";
            if (FileName == null)
            {
                DialogResult dr = saveFileDialog1.ShowDialog();
                if (dr == DialogResult.OK)
                {
                    string filename = saveFileDialog1.FileName;
                    StreamWriter sw = new StreamWriter(filename);
                    sw.Write(this.textBox1.Text);
                    sw.Close();
                }
            }
            else
            {
                StreamWriter sw = new StreamWriter(FileName);
                sw.Write(this.textBox1.Text);
                sw.Close();
            }
        }
        private void 另存为AToolStripMenuItem_Click(object sender, EventArgs e)
        {
            saveFileDialog1.Filter = "文本文件(*.txt)|*.txt|word文件(*.doc)|*.doc";
            DialogResult dr = saveFileDialog1.ShowDialog();
            if (dr == DialogResult.OK)
            {
                string filename = saveFileDialog1.FileName;
                StreamWriter sw = new StreamWriter(filename);
                sw.Write(this.textBox1.Text);
                sw.Close();
            }
        }
        private void 页面设置UToolStripMenuItem_Click(object sender, EventArgs e)
        {
            pageSetupDialog1.Document = printDocument1;//为页面设置对话框指定打印对象
            pageSetupDialog1.ShowDialog();//打开打印对话框
        }
        private void 打印ToolStripMenuItem_Click_1(object sender, EventArgs e)
        {
            DialogResult dr = printDialog1.ShowDialog();
            if (dr == DialogResult.OK)
            {
                printDocument1.Print();
            }
        }
        private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
        {
            //设置打印的画板内容
            System.Drawing.Font f = new System.Drawing.Font("宋体", 12);
            e.Graphics.DrawString(this.textBox1.Text, f, SystemBrushes.ActiveBorder, 10.0f, 0f);
        }
        private void 退出XToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (this.textBox1.Text.Length > 0)
            {
                saveFileDialog1.Filter = "文本文件(*.txt)|*.txt|word文档(*.doc)|*.doc";
                DialogResult drg = MessageBox.Show("是否进行保存?", "保存对话框", MessageBoxButtons.YesNo);
                if (DialogResult.Yes == drg)
                {
                    if (FileName == null)
                    {
                        DialogResult dr = saveFileDialog1.ShowDialog();
                        if (dr == DialogResult.OK)
                        {
                            string filename = saveFileDialog1.FileName;
                            StreamWriter sw = new StreamWriter(filename);
                            sw.Write(this.textBox1.Text);
                            sw.Close();
                        }
                    }
                    else
                    {
                        StreamWriter sw = new StreamWriter(FileName);
                        sw.Write(this.textBox1.Text);
                        sw.Close();
                    }
                }
            }
            FileName = null;
            this.textBox1.Text = "";
            this.Close();
        }
        #endregion
        private void jishiben_Load(object sender, EventArgs e)
        {
            skinEngine2.SkinFile = "MP10.ssk";
        }
    }
}
//替换
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 jishibenwenjian
{
    public partial class tihuan : Form
    {
        public tihuan()
        {
            InitializeComponent();
        }
        private jishiben fuform2;
        public tihuan(string sss, jishiben fuchuangti2)
        {
            InitializeComponent();
            textBox1.Text = sss;
            fuform2 = (jishiben)fuchuangti2;
        }
        private int Count = -1;
        private void button1_Click(object sender, EventArgs e)
        {
            if (Count == -1)
            {
                this.fuform2.textBox1.Select(this.fuform2.textBox1.Text.IndexOf(this.textBox1.Text), this.textBox1.Text.Length);
                Count = this.fuform2.textBox1.Text.IndexOf(this.textBox1.Text);
            }
            else
            {
                this.fuform2.textBox1.Select(this.fuform2.textBox1.Text.IndexOf(this.textBox1.Text, Count + 1), this.textBox1.Text.Length);
                Count = this.fuform2.textBox1.Text.IndexOf(this.textBox1.Text, Count + 1);
                if (Count >= this.fuform2.textBox1.Text.Length - 1)
                {
                    MessageBox.Show("已找不到此项", "记事本", MessageBoxButtons.OK);
                }
            }
            this.fuform2.Focus();
        }
        private void button4_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}
//查找
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 jishibenwenjian
{
    public partial class chazhao : Form
    {
        public chazhao()
        {
            InitializeComponent();
        }
        private jishiben fuform;
        public chazhao(string ss, jishiben fuchuangti)
        {
            InitializeComponent();
            textBox1.Text = ss;
            fuform = (jishiben)fuchuangti;
        }
        private int Count = -1;
        private void button1_Click_1(object sender, EventArgs e)
        {
            if (Count == -1)
            {
                this.fuform.textBox1.Select(this.fuform.textBox1.Text.IndexOf(this.textBox1.Text), this.textBox1.Text.Length);
                Count = this.fuform.textBox1.Text.IndexOf(this.textBox1.Text);
            }
            else
            {
                if (radioButton2.Checked == true && Count < this.fuform.textBox1.Text.Length-1)
                {
                    this.fuform.textBox1.Select(this.fuform.textBox1.Text.IndexOf(this.textBox1.Text, Count + 1), this.textBox1.Text.Length);
                    Count = this.fuform.textBox1.Text.IndexOf(this.textBox1.Text, Count + 1);
                    if (Count >= this.fuform.textBox1.Text.Length-1)
                    {
                        MessageBox.Show("已找不到此项", "记事本", MessageBoxButtons.OK);
                    }
                }
                if (radioButton1.Checked == true && Count > 0)
                {
                    this.fuform.textBox1.Select(this.fuform.textBox1.Text.LastIndexOf(this.textBox1.Text, Count - 1), this.textBox1.Text.Length);
                    Count = this.fuform.textBox1.Text.LastIndexOf(this.textBox1.Text, Count - 1);
                    if (Count <=0)
                    {
                        MessageBox.Show("已找不到此项", "记事本", MessageBoxButtons.OK);
                    }
                }
            }
            this.fuform.Focus();
        }
        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();
        }
    }
}

转载于:https://www.cnblogs.com/XMH1217423419/p/4298621.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
智慧校园建设方案旨在通过融合先进技术,如物联网、大数据、人工智能等,实现校园的智能化管理与服务。政策的推动和技术的成熟为智慧校园的发展提供了基础。该方案强调了数据的重要性,提出通过数据的整合、开放和共享,构建产学研资用联动的服务体系,以促进校园的精细化治理。 智慧校园的核心建设任务包括数据标准体系和应用标准体系的建设,以及信息化安全与等级保护的实施。方案提出了一站式服务大厅和移动校园的概念,通过整合校内外资源,实现资源共享平台和产教融合就业平台的建设。此外,校园大脑的构建是实现智慧校园的关键,它涉及到数据中心化、数据资产化和数据业务化,以数据驱动业务自动化和智能化。 技术应用方面,方案提出了物联网平台、5G网络、人工智能平台等新技术的融合应用,以打造多场景融合的智慧校园大脑。这包括智慧教室、智慧实验室、智慧图书馆、智慧党建等多领域的智能化应用,旨在提升教学、科研、管理和服务的效率和质量。 在实施层面,智慧校园建设需要统筹规划和分步实施,确保项目的可行性和有效性。方案提出了主题梳理、场景梳理和数据梳理的方法,以及现有技术支持和项目分级的考虑,以指导智慧校园的建设。 最后,智慧校园建设的成功依赖于开放、协同和融合的组织建设。通过战略咨询、分步实施、生态建设和短板补充,可以构建符合学校特色的生态链,实现智慧校园的长远发展。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值