C# 保存文件

2021-02-03 00:13

阅读:467

标签:xls   filename   return   code   dialog   ogre   dir   ogr   index   

SaveFileDialog sfd = new SaveFileDialog();
            sfd.Filter = "Excel表格(*.xlsx)|*.xlsx";
            sfd.FilterIndex = 1;
            sfd.RestoreDirectory = true;
            if (sfd.ShowDialog() == DialogResult.OK)
            {
                MessageBox.Show(sfd.FileName.ToString());
            }
            else
            {
                MessageBox.Show("取消保存");
                return;
            }

 

C# 保存文件

标签:xls   filename   return   code   dialog   ogre   dir   ogr   index   

原文地址:https://www.cnblogs.com/yinmu/p/11525518.html


评论


亲,登录后才可以留言!