namespace _16.保存對話框
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
專業(yè)領(lǐng)域包括網(wǎng)站建設(shè)、成都網(wǎng)站制作、商城網(wǎng)站建設(shè)、微信營銷、系統(tǒng)平臺開發(fā), 與其他網(wǎng)站設(shè)計及系統(tǒng)開發(fā)公司不同,創(chuàng)新互聯(lián)建站的整合解決方案結(jié)合了幫做網(wǎng)絡(luò)品牌建設(shè)經(jīng)驗和互聯(lián)網(wǎng)整合營銷的理念,并將策略和執(zhí)行緊密結(jié)合,為客戶提供全網(wǎng)互聯(lián)網(wǎng)整合方案。
private void button1_Click(object sender, EventArgs e)
{
//打開保存對話框
SaveFileDialog sfd = new SaveFileDialog();
//設(shè)置對話框?qū)傩? sfd.Title = "請選擇保存文件的路徑";
sfd.InitialDirectory = @"C:\Users\Administrator.USER-20180925HC\Desktop\pic";
sfd.Filter = "文本文件|*.txt|所有文件|*.*";
sfd.ShowDialog();
//獲得保存文件的路徑
string path = sfd.FileName;
if (path == "")
{
return;
}
using(FileStream fsWrite=new FileStream(path, FileMode.OpenOrCreate, FileAccess.Write))
{
byte[] buffer = Encoding.Default.GetBytes(textBox1.Text);
fsWrite.Write(buffer, 0, buffer.Length);
}
MessageBox.Show("保存成功");
}
}
}