• 大小: 0.18M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签:

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace text
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();

        }

        protected void SaveFile(string fileName)
        {
            try
            {
                Stream stream = File.OpenRead(fileName);  //需引用 using system.io
                using (StreamWriter writer = new StreamWriter(stream))
                {
                    writer.Write(richTextBox1.Text);
                }
            }
            catch (IOException ex)
            {
                MessageBox.Show(ex.

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      35328  2014-11-21 11:02  1 GUI编程方法与步骤--要点-2014-11-16.doc

     文件      65024  2014-11-18 10:05  File类的37个函数功能介绍.doc

     文件     117248  2014-11-16 17:37  richtextbox的使用方法.doc

----------- ---------  ---------- -----  ----

               217600                    3


评论

共有 条评论