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;
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站建設(shè)、成都做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的中原網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
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/";//當(dāng)前運(yùn)行程序的images文件夾
if (!Directory.Exists(copypath))//如果這個(gè)目錄不存在就創(chuàng)建
{
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);
}
}
}
}
網(wǎng)站名稱:OpenFileDialog
文章網(wǎng)址:http://chinadenli.net/article28/gpdpcp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、營(yíng)銷型網(wǎng)站建設(shè)、網(wǎng)站維護(hù)、網(wǎng)站設(shè)計(jì)公司、網(wǎng)站導(dǎo)航、網(wǎng)站建設(shè)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)