C# Winform怎么弹出保存对话框?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# Winform怎么弹出保存对话框?相关的知识,希望对你有一定的参考价值。

我在导出Execl时 想弹出个保存对话框
我知道用SaveFileDialog 但不知道怎么用

参考技术A 下面是保存按纽里的代码:
private void button1_Click(object sender, EventArgs e)

//设置文件路径选择对话框属性
saveFileDialog1.AddExtension = true;
saveFileDialog1.DefaultExt = "xls";

saveFileDialog1.FileName = "新建文件.xls";
saveFileDialog1.Filter = "Excel files (*.xls)|*.xls|All files (*.*)|*.*";
saveFileDialog1.FilterIndex = 1;
saveFileDialog1.RestoreDirectory = true;
saveFileDialog1.Title = "请选择保存路径!";

selectPath = false;
saveFileDialog1.ShowDialog();

if (saveFileDialog1.FileNames.Length > 0)

try

//创建Application对象
Microsoft.Office.Interop.Excel.Application app = new Microsoft.Office.Interop.Excel.ApplicationClass();
Microsoft.Office.Interop.Excel.Workbooks wbs = app.Workbooks;
Microsoft.Office.Interop.Excel.Workbook wb = wbs.Add(true);

Microsoft.Office.Interop.Excel.Worksheet s = (Microsoft.Office.Interop.Excel.Worksheet)wb.Worksheets.Add(Type.Missing, Type.Missing, Type.Missing, Type.Missing);
//下面向excel写入内容就省略了
try

//保存文件
wb.SaveAs(saveFileDialog1.FileNames[0], Microsoft.Office.Interop.Excel.XlFileFormat.xlExcel9795, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
wb.Close(false, Type.Missing, false);
wbs.Close();
app.Quit();
wb = null;
wbs = null;
System.Runtime.InteropServices.Marshal.ReleaseComObject(app);
app = null;
System.GC.Collect();
models.Clear();

catch (System.Exception ex)

//stW.Close();
MessageBox.Show(ex.Message, "错误", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);


catch (System.Exception exx)

//stW.Close();
MessageBox.Show(exx.Message, "错误", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);



参考技术B #region 导出Excel
SaveFileDialog saveFileDialog;
private void button2_Click(object sender, EventArgs e)

if (dataGridView1.Rows.Count == 0)

MessageBox.Show("没有数据可供导出!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;

else

saveFileDialog = new SaveFileDialog();
saveFileDialog.Filter = "Execl files(*.xls)|*.xls";
saveFileDialog.FilterIndex = 0;
saveFileDialog.RestoreDirectory = true; //保存对话框是否记忆上次打开的目录
//saveFileDialog.CreatePrompt = true;
saveFileDialog.Title = "导出Excel文件到";
DateTime now = DateTime.Now;
saveFileDialog.FileName = "报警记录报表"+now.Year.ToString().PadLeft(2) + now.Month.ToString().PadLeft(2, '0') + now.Day.ToString().PadLeft(2, '0') + "-" + now.Hour.ToString().PadLeft(2, '0') + now.Minute.ToString().PadLeft(2, '0') + now.Second.ToString().PadLeft(2, '0');

//点了保存按钮进入
if (saveFileDialog.ShowDialog() == DialogResult.OK)

if (saveFileDialog.FileName.Trim() == "")

MessageBox.Show("请输入要保存的文件名", "提示");
return;

progressBar1.Visible = true; //进度条
this.panel1.Enabled = false;

Thread threadReceive = new Thread(new ThreadStart(ExportTOExcel));
threadReceive.Start();


本回答被提问者采纳

C# 怎么保存WinForm应用程序的配置?

是通过app.config吗?

供参考:
1.自定义一个配置文件(.config/.txt),比如:在BIN目录下生成一个setting.config,通过winform界面把配置参数全部保存到这里面来。
2.保存到app.config中,可以把一些配置参数保存到app.config,这样在窗体编译的时候,app.config
会自动生成到BIN目录下。
3.保存到数据库指定的表,比如:D_DataBase/T_Setting表,可以通过winform界面把参数全部保存到数据库指定的表中。
4.保存到注册表中。
参考技术A app.config是读取配置参数,保存一般对应在documentSetting\local\application里面 参考技术B 嗯 就在那个文件里添加

以上是关于C# Winform怎么弹出保存对话框?的主要内容,如果未能解决你的问题,请参考以下文章

C# WinForm 怎么设置弹出对话框然后2秒后自动关闭

C# WinForm 怎么设置弹出对话框然后2秒后自动关闭

C#(Winform) 如何在弹出的对话框中显示选择的信息

c# 保存图片文件 winform

C# winform我保存到本地的文件的思路、我是先对内容进行加密在保存、还是保存之后对这个文件加密

c# winform 输入框