Windows期中作业——记事本

使用工具:winform

设计思路

        利用openFileDialog控件、saveFileDialog控件、fontDialog控件分别实现文件的打开到richTextBox、保存成为txt文件以及richTextBox字体改变。同时利用SoundPlayer对象来为button附加音效。

运行界面

 

关键代码 

使用SoundPlayer时应加


using System.Media;

“打开”源代码

SoundPlayer soundPlayer = new SoundPlayer();
            soundPlayer.SoundLocation = @"C:\Users\23313\Desktop\学业\windows\记事本\bin\Debug\1.wav";
            soundPlayer.Load();
            soundPlayer.Play();

            openFileDialog1.Title = "四级或许可能没过";
            openFileDialog1.Filter = "文本文件.txt|*.txt";
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                string str = openFileDialog1.FileName;
                richTextBox1.LoadFile(openFileDialog1.FileName, RichTextBoxStreamType.PlainText);
                richTextBox1.Show();
            }

“保存”源代码

SoundPlayer soundPlayer = new SoundPlayer();
            soundPlayer.SoundLocation = @"C:\Users\23313\Desktop\学业\windows\记事本\bin\Debug\2.wav";
            soundPlayer.Load();
            soundPlayer.Play();

            saveFileDialog1.Filter = "文本文件.txt|*.txt";
            if (saveFileDialog1.ShowDialog() == DialogResult.OK)
            {
                string str = saveFileDialog1.FileName;
                richTextBox1.SaveFile(str, RichTextBoxStreamType.PlainText);
            }

“字体”源代码

SoundPlayer soundPlayer = new SoundPlayer();
            soundPlayer.SoundLocation = @"C:\Users\23313\Desktop\学业\windows\记事本\bin\Debug\3.wav";
            soundPlayer.Load();
            soundPlayer.Play();
            if (fontDialog1.ShowDialog() == DialogResult.OK)
            {
                richTextBox1.Font = fontDialog1.Font;
            }

效果

打开

 

保存

 

 保存的txt文件

 字体

 总结

        在保存文件时需要用Filter函数来规定产生文件的类型,否则会产生无类型文件,此外,在SaveFile函数中需要加RichTextBoxStreamType.PlainText规定输出为纯文本文件,否则用系统记事本打开文件时会显示乱码。

        使用SoundPlayer时注意该方法需要加using System.Media,且只能读取wav文件,若是需要读取mp3文件需要使用Windows Media Player控件。该方法下的Load函数表示将wav文件提前加载到内存,Play函数表示同步操作,在播放声音时可以同时做其他进程,而PlaySync函数是表示必须先完成声音播放才能进行下一步。

源代码地址

作业3:记事本 · 吴盛源/作业 - 码云 - 开源中国 (gitee.com)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值