• C#小项目之记事本


    C#小项目之记事本

    子窗体设计

    image-20230526233330408

    frmChild.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;
    using System.Drawing.Text;
    using System.Collections;
    using System.IO;
    namespace notepad
    {
        public partial class frmChild : Form
        {
            public frmChild()
            {
                InitializeComponent();
            }
            //编辑文本时
            private void textBox1_TextChanged(object sender, EventArgs e)
            {
                toolStripLabelMake.Text = "*";
            }
            //窗体加载事件
            private void frmChild_Load(object sender, EventArgs e)
            {
                //加载时要加载,要加载系统字体
                InstalledFontCollection myFonts = new InstalledFontCollection();
                //获取InstalledFontCollection对象的数组
                FontFamily[] ff = myFonts.Families;
                //声明一个ArrayList变量
                ArrayList list = new ArrayList();
                //获取系统数组的列表中集合的长度
                int count = ff.Length;
    
                //使用for循环把字体名称写入到toolStripComboBoxFonts
                for (int i = 0; i < count; i++)
                {
                    string FontName = ff[i].Name;
                    toolStripComboBoxFonts.Items.Add(FontName);
                }
                
            }
            //加粗按钮
            private void toolStripButtonBold_Click(object sender, EventArgs e)
            {
                //点击按钮加粗,加粗时再点击按钮取消加粗
                if (textBoxNote.Font.Bold == false)
                {
                    textBoxNote.Font = new Font(textBoxNote.Font,FontStyle.Bold);
                }
                else
                {
                    textBoxNote.Font = new Font(textBoxNote.Font, FontStyle.Regular);
                }
                    
            }
            //倾斜按钮
            private void toolStripButtonItalic_Click(object sender, EventArgs e)
            {
                if (textBoxNote.Font.Italic == false)
                {
                    textBoxNote.Font = new Font(textBoxNote.Font, FontStyle.Italic);
                }
                else
                {
                    textBoxNote.Font = new Font(textBoxNote.Font, FontStyle.Regular);
                }
            }
            //改变选择字体的索引事件
            private void toolStripComboBoxFonts_SelectedIndexChanged(object sender, EventArgs e)
            {
                string fontName = toolStripComboBoxFonts.Text;
                float fontSize = float.Parse(toolStripComboBoxSize.Text);
                textBoxNote.Font = new Font(fontName, fontSize);
            }
    
            private void toolStripComboBoxSize_SelectedIndexChanged(object sender, EventArgs e)
            {
                string fontName = toolStripComboBoxFonts.Text;
                float fontSize = float.Parse(toolStripComboBoxSize.Text);
                textBoxNote.Font = new Font(fontName, fontSize);
            }
    
            private void toolStripComboBoxSize_TextChanged(object sender, EventArgs e)
            {
                string fontName = toolStripComboBoxFonts.Text;
                float fontSize = float.Parse(toolStripComboBoxSize.Text);
                textBoxNote.Font = new Font(fontName, fontSize);
            }
            //保存文档
            private void toolStripButtonSave_Click(object sender, EventArgs e)
            {
                if (textBoxNote.Text.Trim() != "")
                {
                    if (this.Text == "")
                    {
                        //新建一个保存文件的对话框
                        //创建一个筛选器\过滤器
                        saveFileDialog1.Filter = ("文本文档(*.txt)|*.txt");
                        //判断用户点击的是保存按钮还是取消按钮
                        if (saveFileDialog1.ShowDialog() == DialogResult.OK)
                        {
                            //保存文件到用户指定的目录
                            //获取用户选择的文件及路径
                            string path = saveFileDialog1.FileName;
                            //保存文件到指定路径
                            StreamWriter sw = new StreamWriter(path, false);
                            //保存文件到指定路径
                            sw.WriteLine(textBoxNote.Text.Trim());
                            //把窗体text属性设置为保存后的文件路径
                            this.Text = path;
                            //释放资源
                            sw.Flush();
                            sw.Close();
                        }
                    }
                    else
                    {
                        //保存文件到用户指定的目录
                        //获取用户选择的文件及路径
                        string path = this.Text;
                        //保存文件到指定路径
                        StreamWriter sw = new StreamWriter(path, false);
                        //保存文件到指定路径
                        sw.WriteLine(textBoxNote.Text.Trim());
                        //清理缓存
                        sw.Flush();
                        sw.Close();
                    }
                }
                else
                {
                    MessageBox.Show("空文档 不能保存","信息提示",MessageBoxButtons.OK,MessageBoxIcon.Error);
                }
            }
            //打开文档
            private void toolStripButtonOpen_Click(object sender, EventArgs e)
            {
                //新建一个保存文件的对话框
                //创建一个筛选器\过滤器
                openFileDialog1.Filter = ("文本文档(*.txt) | *.txt");
                //判断用户点击的是打开按钮还是取消按钮
                if (openFileDialog1.ShowDialog() == DialogResult.OK)
                {
                    //获取打开文档的路径
                    string path = openFileDialog1.FileName;
                    //通用编码
                    StreamReader sr = new StreamReader(path,Encoding.UTF8);
                    //读取文档中的数据流
                    string text = sr.ReadToEnd();
                    textBoxNote.Text = text;
                    //将打开的文件路径写在当前窗体的属性中
                    this.Text = path;
                    //打开文件时清除记号标签
                    toolStripLabelMake.Text = "";
                    sr.Close();
                }
            }
            //窗体关闭事件
            private void frmChild_FormClosing(object sender, FormClosingEventArgs e)
            {
                //判断记号label是否时*号
                if(toolStripLabelMake.Text=="*")
                {
                    //如果是*进入代码,提示用户尚未保存
                    DialogResult dr = MessageBox.Show("文档尚未保存,确定要继续退出吗?","信息询问",MessageBoxButtons.YesNo,MessageBoxIcon.Question); 
                    //如果用户选择的是 确定 按钮,
                    if(dr == DialogResult.Yes)
                    {
                        this.Dispose();
                    }
                    else
                    {
                        e.Cancel = true;
                    }
                }
            }
            //新建按钮
            private void toolStripButton1_Click(object sender, EventArgs e)
            {
                textBoxNote.Text = "";
                toolStripLabelMake.Text = "";
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189

    所有窗体都是Form窗体的派生类

    textBox1_TextChanged事件

    当变更textBox_Text的内容时进入此函数,在子窗体右上角显示*代表修改过

    		//编辑文本时
            private void textBox1_TextChanged(object sender, EventArgs e)
            {
                toolStripLabelMake.Text = "*";
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5

    frmChild_Load子窗体加载事件

    当子窗体在加载时执行该函数,把系统字体存储在FontFamily数组,方便后续使用

     private void frmChild_Load(object sender, EventArgs e)
            {
                //加载时要加载,要加载系统字体
                InstalledFontCollection myFonts = new InstalledFontCollection();
                //获取InstalledFontCollection对象的数组
                FontFamily[] ff = myFonts.Families;
                //声明一个ArrayList变量
                ArrayList list = new ArrayList();
                //获取系统数组的列表中集合的长度
                int count = ff.Length;
    
                //使用for循环把字体名称写入到toolStripComboBoxFonts
                for (int i = 0; i < count; i++)
                {
                    string FontName = ff[i].Name;
                    toolStripComboBoxFonts.Items.Add(FontName);
                }
                
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19

    toolStripButtonBold_Click鼠标点击加粗事件

    点击加粗如果当前是加粗就取消加粗,不是就加粗

    private void toolStripButtonBold_Click(object sender, EventArgs e)
            {
                //点击按钮加粗,加粗时再点击按钮取消加粗
                if (textBoxNote.Font.Bold == false)
                {
                    textBoxNote.Font = new Font(textBoxNote.Font,FontStyle.Bold);
                }
                else
                {
                    textBoxNote.Font = new Font(textBoxNote.Font, FontStyle.Regular);
                }
                    
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    toolStripButtonItalic_Click鼠标点击倾斜事件

    点击倾斜效果如果当前是倾斜就取消倾斜,不是就倾斜

    private void toolStripButtonItalic_Click(object sender, EventArgs e)
            {
                if (textBoxNote.Font.Italic == false)
                {
                    textBoxNote.Font = new Font(textBoxNote.Font, FontStyle.Italic);
                }
                else
                {
                    textBoxNote.Font = new Font(textBoxNote.Font, FontStyle.Regular);
                }
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    toolStripComboBoxFonts_SelectedIndexChanged改变选择字体的索引事件

    改变字体为下拉框中选中的字体

    private void toolStripComboBoxFonts_SelectedIndexChanged(object sender, EventArgs e)
            {
                string fontName = toolStripComboBoxFonts.Text;
                float fontSize = float.Parse(toolStripComboBoxSize.Text);
                textBoxNote.Font = new Font(fontName, fontSize);
    		}
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    toolStripComboBoxSize_TextChanged改变字体大小事件

    改变字体大小为下拉框中选中的字体大小

    private void toolStripComboBoxSize_TextChanged(object sender, EventArgs e)
            {
                string fontName = toolStripComboBoxFonts.Text;
                float fontSize = float.Parse(toolStripComboBoxSize.Text);
                textBoxNote.Font = new Font(fontName, fontSize);
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    toolStripButtonSave_Click点击保存按钮

    注释很详细

    private void toolStripButtonSave_Click(object sender, EventArgs e)
            {
                if (textBoxNote.Text.Trim() != "")
                {
                    if (this.Text == "")
                    {
                        //新建一个保存文件的对话框
                        //创建一个筛选器\过滤器
                        saveFileDialog1.Filter = ("文本文档(*.txt)|*.txt");
                        //判断用户点击的是保存按钮还是取消按钮
                        if (saveFileDialog1.ShowDialog() == DialogResult.OK)
                        {
                            //保存文件到用户指定的目录
                            //获取用户选择的文件及路径
                            string path = saveFileDialog1.FileName;
                            //保存文件到指定路径
                            StreamWriter sw = new StreamWriter(path, false);
                            //保存文件到指定路径
                            sw.WriteLine(textBoxNote.Text.Trim());
                            //把窗体text属性设置为保存后的文件路径
                            this.Text = path;
                            //释放资源
                            sw.Flush();
                            sw.Close();
                        }
                    }
                    else
                    {
                        //保存文件到用户指定的目录
                        //获取用户选择的文件及路径
                        string path = this.Text;
                        //保存文件到指定路径
                        StreamWriter sw = new StreamWriter(path, false);
                        //保存文件到指定路径
                        sw.WriteLine(textBoxNote.Text.Trim());
                        //清理缓存
                        sw.Flush();
                        sw.Close();
                    }
                }
                else
                {
                    MessageBox.Show("空文档 不能保存","信息提示",MessageBoxButtons.OK,MessageBoxIcon.Error);
                }
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45

    toolStripButtonOpen_Click点击打开按钮

    注释很详细

     private void toolStripButtonOpen_Click(object sender, EventArgs e)
            {
                //新建一个保存文件的对话框
                //创建一个筛选器\过滤器
                openFileDialog1.Filter = ("文本文档(*.txt) | *.txt");
                //判断用户点击的是打开按钮还是取消按钮
                if (openFileDialog1.ShowDialog() == DialogResult.OK)
                {
                    //获取打开文档的路径
                    string path = openFileDialog1.FileName;
                    //通用编码
                    StreamReader sr = new StreamReader(path,Encoding.UTF8);
                    //读取文档中的数据流
                    string text = sr.ReadToEnd();
                    textBoxNote.Text = text;
                    //将打开的文件路径写在当前窗体的属性中
                    this.Text = path;
                    //打开文件时清除记号标签
                    toolStripLabelMake.Text = "";
                    sr.Close();
                }
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22

    frmChild_FormClosing窗体关闭事件

    关闭前没有保存弹出提示框,已经保存就直接关闭,通过判断*

    private void frmChild_FormClosing(object sender, FormClosingEventArgs e)
            {
                //判断记号label是否时*号
                if(toolStripLabelMake.Text=="*")
                {
                    //如果是*进入代码,提示用户尚未保存
                    DialogResult dr = MessageBox.Show("文档尚未保存,确定要继续退出吗?","信息询问",MessageBoxButtons.YesNo,MessageBoxIcon.Question); 
                    //如果用户选择的是 确定 按钮,
                    if(dr == DialogResult.Yes)
                    {
                        this.Dispose();
                    }
                    else
                    {
                        e.Cancel = true;
                    }
                }
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    toolStripButton1_Click点击新建按钮事件

    点击新建子窗口,初始化内容都为空

    private void toolStripButton1_Click(object sender, EventArgs e)
            {
                textBoxNote.Text = "";
                toolStripLabelMake.Text = "";
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5

    frmParent.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 notepad
    {
        public partial class frmParent : Form
        {
            public frmParent()
            {
                InitializeComponent();
            }
            //新建
            private void ToolStripMenuItemNew_Click(object sender, EventArgs e)
            {
                //实例化一个子窗体对象
                frmChild child = new frmChild();
                //设置子窗体的父窗体
                child.MdiParent = this;
                //打开子窗体
                child.Show();
            }
            //关闭
            private void ToolStripMenuItemClose_Click(object sender, EventArgs e)
            {
                Form frm = this.ActiveMdiChild;
                frm.Close();
            }
            //关闭全部
            private void ToolStripMenuItemCloseALL_Click(object sender, EventArgs e)
            {
                //this.MdiChildren获取父窗体的子窗体的集合
                foreach (Form form in this.MdiChildren)
                {
                    Form frm = this.ActiveMdiChild;
                    frm.Close();
                }
            }
            //退出
            private void ToolStripMenuItemExit_Click(object sender, EventArgs e)
            {
                this.Close();
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52

    image-20230526234920672

    ToolStripMenuItemNew_Click点击新建子窗口

    点击新建自然要打开一个子窗口,然后设置新打开的子窗口的父窗口为当前窗口,最后显示子窗口

    private void ToolStripMenuItemNew_Click(object sender, EventArgs e)
            {
                //实例化一个子窗体对象
                frmChild child = new frmChild();
                //设置子窗体的父窗体
                child.MdiParent = this;
                //打开子窗体
                child.Show();
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    ToolStripMenuItemClose_Click点击关闭窗口

    关闭当前活动的窗口,颜色效果不一样

    private void ToolStripMenuItemClose_Click(object sender, EventArgs e)
            {
                Form frm = this.ActiveMdiChild;
                frm.Close();
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5

    ToolStripMenuItemCloseALL_Click点击关闭全部

    关闭所有打开的窗口

    private void ToolStripMenuItemCloseALL_Click(object sender, EventArgs e)
            {
                //this.MdiChildren获取父窗体的子窗体的集合
                foreach (Form form in this.MdiChildren)
                {
                    Form frm = this.ActiveMdiChild;
                    frm.Close();
                }
            }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    ToolStripMenuItemExit_Click点击退出

    直接关闭父窗口,所有的子窗口都会关闭

    private void ToolStripMenuItemExit_Click(object sender, EventArgs e)
            {
                this.Close();
            }
    
    • 1
    • 2
    • 3
    • 4

    演示效果

    初始

    image-20230526235734471

    点击文件中的新建

    可以产生多个子窗口,取决于新建了多少个

    image-20230526235758855

    点击打开

    打开电机驱动.txt

    image-20230526235857641

    显示如下

    左上角会显示路径

    image-20230526235920916

    点击加粗

    image-20230527000006880

    点击倾斜

    image-20230527000049208

    选择字体

    image-20230527000143296

    选择字号

    image-20230527000200567

    保存

    在内容中输入文字,右上角出现星号,表示没保存

    image-20230527000312045

    直接点击×

    弹出未保存的提示框

    image-20230527000336255

    点击保存在X

    可以直接退出

    关闭当前激活的窗口

    第一个颜色与其他不同,即为当前激活的窗口

    image-20230527000520129

    关闭全部窗口

    image-20230527000621605

  • 相关阅读:
    【零基础学Python】后端开发篇 第二十一节--Python Web开发二:Django的安装和运行
    PCL点云库可视化常用函数与经验总结
    电磁铁常见故障有哪些
    终于有清华大佬把“:JVM入门以及Class格式”给大家讲解透彻了
    数据探索的新前沿:可视化大屏交互功能
    qml介绍
    CYGWIN WARNING: Couldn‘t compute FAST__CWD
    常用的Java工具类
    FPGA硬件工程师Verilog面试题(基础篇二)
    与内在功能连接个体变异性相关的基因表达
  • 原文地址:https://blog.csdn.net/Johnor/article/details/130895812