博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
读书日记
阅读量:6678 次
发布时间:2019-06-25

本文共 1828 字,大约阅读时间需要 6 分钟。

1.创建窗体

2.实现页面效果

3.编码

1 using System.IO; 2  3 namespace 读书日记 4 { 5     public partial class Form1 : Form 6     { 7         public Form1() 8         { 9             InitializeComponent();10         }11 12         private void button1_Click(object sender, EventArgs e)13         {14             string Author = textBox1.Text;15             string BookName = textBox2.Text;16             string Content = textBox3.Text;17             //把文件创建在E盘下18             string Path = "E:\\" + BookName + ".txt";19             //FileStream fs = new FileStream(Path, FileMode.Create);20             //StreamWriter sw = new StreamWriter(fs, Encoding.Default);21             //sw.WriteLine("作者{0}", Author);22             //sw.WriteLine("标题{0}",BookName);23             //sw.WriteLine("内容{0}",Content);24             //sw.Close();25             //fs.Close();26             //MessageBox.Show("保存成功!");27             //textBox1.Text = "";28             //textBox2.Text = "";29             //textBox3.Text = "";30 31 32 33                // 把文件写在bin目录下34             FileStream fs = new FileStream(Author + ".txt", FileMode.OpenOrCreate);35             StreamWriter sw = new StreamWriter(fs, Encoding.Default);36             sw.WriteLine(Author + "        " + BookName + "    " + Content);37             sw.Close();38             fs.Close();39             MessageBox.Show("保存成功!");40         41         }42 43         private void button2_Click(object sender, EventArgs e)44         {45             //Application.Exit();46             DialogResult result;47             result = MessageBox.Show("是否保存?","提示",MessageBoxButtons.OKCancel,MessageBoxIcon.Information);48             if (result ==DialogResult .OK)49             {50                 this.Close();51             }52         }53     }54 }

 

转载于:https://www.cnblogs.com/WuXuanKun/p/5441679.html

你可能感兴趣的文章
【分享创造】react-typewriter-hook: 用react hooks来实现打字机的效果
查看>>
极限编程 (Extreme Programming) 和用户故事 (User Stories) 的关系
查看>>
coredns 排错记
查看>>
CentOS 7 安装 Nginx
查看>>
程序员毒鸡汤:我们都该学会正确的失败
查看>>
在 JavaScript 中优雅的提取循环内的数据
查看>>
HTML-语义类标签
查看>>
cookie、session、cache-control等
查看>>
YYCache 源码学习(二):YYDiskCache
查看>>
第十八天-企业应用架构模式-基本模式
查看>>
黑客图标
查看>>
【每日笔记】【Go学习笔记】2019-01-04 Codis笔记
查看>>
Dubbo Ecosystem - 从微服务框架到微服务生态
查看>>
Hexo 搭建个人博客 #05 利用 Travis CI 帮你自动部署
查看>>
NEO改进协议提案8(NEP-8)
查看>>
NODE + JWT + Mongo(简单实现权限管理)
查看>>
egg(20)--数据库中的表与表的关系
查看>>
IPv6时代已来:双十一中的IPv6大规模应用实践
查看>>
深入理解Redis系列之SpringBoot集成Redis
查看>>
关于cookie的一些说明
查看>>