http://www.sufeinet.com/plugin.php?id=keke_group

苏飞论坛

 找回密码
 马上注册

QQ登录

只需一步,快速开始

分布式系统框架(V2.0) 轻松承载百亿数据,千万流量!讨论专区 - 源码下载 - 官方教程

HttpHelper爬虫框架(V2.7-含.netcore) HttpHelper官方出品,爬虫框架讨论区 - 源码下载 - 在线测试和代码生成

HttpHelper爬虫类(V2.0) 开源的爬虫类,支持多种模式和属性 源码 - 代码生成器 - 讨论区 - 教程- 例子

查看: 6953|回复: 9

[C#语言基础] C#另存为代码怎么写,想要存在本地的硬盘上或者桌面

[复制链接]
发表于 2014-6-6 15:07:52 | 显示全部楼层 |阅读模式
[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 WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            OpenFileDialog open = new OpenFileDialog();
            open.InitialDirectory = "c:\\";

            open.Filter = "图片文件(jpg,jpeg,bmp,gif,ico,pen,tif)|*.jpg;*.jpeg;*.bmp;*.gif;*.ico;*.png;*.tif;*.wmf";

            if (open.ShowDialog()== DialogResult.OK)
            {
                pictureBox1.ImageLocation = open.FileName;
            }
        }

        private void pictureBox1_Click(object sender, EventArgs e)
        {


        }

        private void 居中ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;



        }

        private void toolStripMenuItem1_Click(object sender, EventArgs e)
        {
            pictureBox1.SizeMode = PictureBoxSizeMode.CenterImage;
        }

        private void 正常ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
        }

        private void toolStripMenuItem2_Click(object sender, EventArgs e)
        {
            pictureBox1.SizeMode = PictureBoxSizeMode.Zoom;
        }

        private void 说明ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MessageBox.Show("右击也可以使用功能","信息框",MessageBoxButtons.OK,MessageBoxIcon.None);
        }



        private void 另存为ToolStripMenuItem_Click(object sender, EventArgs e)       //这里的另存为代码怎么写,能够保存在硬盘里或者桌面上?
        {
            if (saveFileDialog1.ShowDialog() == DialogResult.OK)
            {
                string i = saveFileDialog1.FileName;              


            }

        }


    }
}


1. 开通SVIP会员,免费下载本站所有源码,不限次数据,不限时间
2. 加官方QQ群,加官方微信群获取更多资源和帮助
3. 找站长苏飞做网站、商城、CRM、小程序、App、爬虫相关、项目外包等点这里
发表于 2014-6-6 15:12:45 | 显示全部楼层
你想要的这里都有http://www.sufeinet.com/thread-197-1-1.htmlC#Notepad记事本实现
 楼主| 发表于 2014-6-6 15:29:44 | 显示全部楼层
站长苏飞 发表于 2014-6-6 15:12
你想要的这里都有http://www.sufeinet.com/thread-197-1-1.htmlC#Notepad记事本实现

网站打不开。404
发表于 2014-6-6 15:35:57 | 显示全部楼层
 楼主| 发表于 2014-6-6 15:50:57 | 显示全部楼层
站长苏飞 发表于 2014-6-6 15:35
http://www.sufeinet.com/thread-197-1-1.html

SaveFileDialog savefile = new SaveFileDialog();
            savefile.Filter = "文本文件(*.txt)|*.txt|所有文件(*.*)|*.*";
            if (savefile.ShowDialog() == DialogResult.OK)
            {
                this.richTextBox1.SaveFile (savefile .FileName ,RichTextBoxStreamType.PlainText );
            }
他的这个是记事本的保存。我运用到我那个图片浏览器里,保存后打开说是空的。 他用的是richTextBox1,我用的是pictureBox1哪里需要修改
SaveFileDialog save = new SaveFileDialog();
            save.Filter = "图片文件(jpg,jpeg,bmp,gif,ico,pen,tif)|*.jpg;*.jpeg;*.bmp;*.gif;*.ico;*.png;*.tif;*.wmf";
            if (save.ShowDialog() == DialogResult.OK)
            {
                this.richTextBox1.SaveFile(save.FileName, RichTextBoxStreamType.PlainText);


            }
发表于 2014-6-6 15:52:29 | 显示全部楼层
这只是个一个保存对话框,保存的功能要你自己写的,肯定是修改这里了  this.richTextBox1.SaveFile(save.FileName, RichTextBoxStreamType.PlainText);
 楼主| 发表于 2014-6-6 16:03:26 | 显示全部楼层
站长苏飞 发表于 2014-6-6 15:52
这只是个一个保存对话框,保存的功能要你自己写的,肯定是修改这里了  this.richTextBox1.SaveFile(save.Fi ...

知道是这里,只不过不知道怎么改,我想把已经打开的图片,保存在桌面,但他这个例子和我的不一样,不知道该怎么改。
发表于 2014-6-6 16:19:47 | 显示全部楼层
你在这里写Image.save( )看看这个方法怎么用就行了,save.FileName这是得到的路径
 楼主| 发表于 2014-6-6 17:24:46 | 显示全部楼层
站长苏飞 发表于 2014-6-6 16:19
你在这里写Image.save( )看看这个方法怎么用就行了,save.FileName这是得到的路径

知道了,谢谢站长~
发表于 2014-6-10 09:10:58 | 显示全部楼层
强烈支持楼主ing……
您需要登录后才可以回帖 登录 | 马上注册

本版积分规则

QQ|手机版|小黑屋|手机版|联系我们|关于我们|广告合作|苏飞论坛 ( 豫ICP备18043678号-2)

GMT+8, 2024-11-15 19:29

© 2014-2021

快速回复 返回顶部 返回列表