如何使用C#添加保存文件对话框
我需要实现类似于记事本的保存选项的功能。假设我在 RichTextBox
旁边放置了一个按钮,我想要的是,当单击此按钮时,将打开一个对话框,该对话框看起来类似于 保存时出现的对话框当被点击时。我想通过在保存对话框框中输入文件名来以文本格式保存RichTextBox的内容。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
对于WPF,您应该使用此SaveFileDialog< /a>.
For WPF you should use this SaveFileDialog.
这适用于文本文件,并在
WPF
中进行了测试。This works for text files and was tested in
WPF
.误读了问题 - Ray 的答案对 OP 有效
这仅适用于 Windows 窗体。
您应该看一下 SaveFileDialog 类: http:// /msdn.microsoft.com/en-us/library/system.windows.forms.savefiledialog.aspx
并使用类似的内容保存文件(请参阅此处) :
misread the question - Ray's answer is valid for OP
This works only in Windows Forms.
You should take a look at the SaveFileDialog class: http://msdn.microsoft.com/en-us/library/system.windows.forms.savefiledialog.aspx
And save the file using something like this (see here):
您可以使用一个
SaveFileDialog
组件,请阅读 此处 了解其工作原理和工作示例。There is a
SaveFileDialog
component which you can use, read here to find out how it works and a working sample.