Winform另存为
有谁知道任何文章或网站显示如何在 win 表单中创建“另存为”对话框。我有一个按钮,用户单击并序列化一些数据,然后用户使用此“另存为”框指定他们希望将其保存的位置。
Does anyone know any articles or sites showing how to create a "Save as" dialogue box in win forms. I have a button, user clicks and serializes some data, the user than specifies where they want it saved using this Save as box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的意思是像
SaveFileDialog
吗?来自MSDN示例,稍作修改:
You mean like
SaveFileDialog
?From the MSDN sample, slightly amended:
使用
SaveFileDialog
控制/类。Use the
SaveFileDialog
control/class.我在 C# 中做了一个记事本应用程序,我遇到了这个场景来保存文件,尝试一下。它会完美地工作
Im doing a notepad application in c# i came over this scenario to save file as try this out.It will work perfectly