這篇文章主要為大家詳細介紹了Winform SaveFileDialog保存文件對話框的相關資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下
SaveFileDialog用於保存文件,供大家參考,具體內容如下
1、新建Winform窗體應用程序,命名為SaveFileDialogDemo。
2、在介面上新增一個按鈕的控制項(用於開啟儲存檔案對話方塊),新增文字控件,用於輸入要儲存的內容。
3、後台程式碼實作:
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 SaveFileDialogDemo { public partial class Form1 : Form { public Form1() { InitializeComponent(); } /// <summary> /// 保存文件按钮 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void btn_SaveFile_Click(object sender, EventArgs e) { // SaveFileDialog sfd = new SaveFileDialog(); //设置保存文件对话框的标题 sfd.Title = "请选择要保存的文件路径"; //初始化保存目录,默认exe文件目录 sfd.InitialDirectory = Application.StartupPath; //设置保存文件的类型 sfd.Filter = "文本文件|*.txt|音频文件|*.wav|图片文件|*.jpg|所有文件|*.*"; if (sfd.ShowDialog() == DialogResult.OK) { //获得保存文件的路径 string filePath = sfd.FileName; //保存 using (FileStream fsWrite = new FileStream(filePath, FileMode.OpenOrCreate, FileAccess.Write)) { byte[] buffer = Encoding.Default.GetBytes(txt_FileInfo.Text.ToString().Trim()); fsWrite.Write(buffer, 0, buffer.Length); } } } } }
4、執行exe程序,在文字方塊中輸入要儲存的內容:
5、點選「儲存檔案」按鈕,開啟儲存檔案對話框,輸入檔名,點選儲存:
6、在Debug目錄下面可以看到保存對話框.txt這個文件,打開文件,可以看到保存的內容:
以上是Winform控制項SaveFileDialog關於保存檔案用法的程式碼範例的詳細內容。更多資訊請關注PHP中文網其他相關文章!