91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

OpenFileDialog

發布時間:2020-07-22 18:55:02 來源:網絡 閱讀:688 作者:趙秋陽 欄目:軟件技術

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace WindowsFormsApp4
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

    private void button1_Click(object sender, EventArgs e)//讀取文本
    {
        this.openFileDialog1.Filter = "*.txt|*.txt";
        if (openFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
        {
            StreamReader sr = new StreamReader(openFileDialog1.FileName);
            MessageBox.Show(sr.ReadToEnd());
            sr.Close();
        }
    }

    private void button2_Click(object sender, EventArgs e)//選擇圖片
    {
        this.openFileDialog1.Filter = "(*.jpg;*.jpg;*.jpeg;*.gif;*.png)|*.jpg;*.jpeg;*.gif;*.png";
        if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
            MessageBox.Show("" + openFileDialog1.FileName);
            pictureBox1.ImageLocation = openFileDialog1.FileName;

        }

    }
    //拷貝到制定文件夾
    private void button4_Click(object sender, EventArgs e)
    {
        string oldpath = pictureBox1.ImageLocation;
        string fileName = System.IO.Path.GetFileName(oldpath).ToString();
        string copypath = System.IO.Directory.GetCurrentDirectory() + "/images/";//當前運行程序的images文件夾
        if (!Directory.Exists(copypath))//如果這個目錄不存在就創建
        {
            Directory.CreateDirectory(copypath);
        }

        File.Copy(pictureBox1.ImageLocation, copypath + fileName, true);
        MessageBox.Show("保存成功");
    }

    //另存
    private void button3_Click(object sender, EventArgs e)
    {
        SaveFileDialog saveFileDialog1 = new SaveFileDialog();
        string oldpath = pictureBox1.ImageLocation;
        string fileName = System.IO.Path.GetFileName(oldpath).ToString();
        string houzui = System.IO.Path.GetExtension(oldpath).ToString();
        saveFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";
        saveFileDialog1.FilterIndex = 2;
        saveFileDialog1.RestoreDirectory = true;

        if (saveFileDialog1.ShowDialog() == DialogResult.OK)
        {
                MessageBox.Show(saveFileDialog1.FileName);

                File.Copy(pictureBox1.ImageLocation, saveFileDialog1.FileName+houzui, true);
        }
    }

}

}

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

瑞安市| 榕江县| 梅河口市| 乐安县| 孟连| 苏尼特右旗| 樟树市| 隆化县| 承德市| 名山县| 文登市| 阳泉市| 湟源县| 崇仁县| 吉木萨尔县| 清镇市| 铁力市| 金寨县| 德钦县| 达拉特旗| 剑河县| 贵南县| 天全县| 拉萨市| 本溪| 嵊州市| 洪泽县| 阿图什市| 乌鲁木齐县| 托克托县| 渝北区| 陆丰市| 湘阴县| 越西县| 沅江市| 黄陵县| 孙吴县| 锡林郭勒盟| 大冶市| 利川市| 庆元县|