Avalon Dock 文档内容在关闭前保存 C#
我在一个类似于 notepad++ 的项目中使用 Avalon Dock,我将文档作为文档内容,我面临的问题是,当用户关闭文档内容时,
如果他/她想要保存,我希望他收到弹出消息关闭前的文档。
我怎样才能做到这一点?
先感谢您。
I am using Avalon Dock in a project that's similar to notepad++ i have the documents as Document content, the problem that im facing is that when a user closes a document content
i want him to get a pop up msg if he/she wants to save the document before closing.
How can i accomplish this?
Thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我使用的 AvalonDock 版本 (1.2.2668.0) 中,我可以简单地为 DocumentContent 的 Closing 事件定义一个处理程序。
向 DocumentContent 添加处理程序的示例,我向 Closing 事件添加处理程序:
示例处理程序:
希望这会有所帮助,如果没有,您使用的是哪个版本的 AvalonDock?
}
In the version of AvalonDock I'm using (1.2.2668.0), I can simply define a handler for the Closing event of a DocumentContent.
example for adding a handler to a DocumentContent, I am adding a handler to the Closing event:
The sample handler:
Hope this helps, if not, which version of AvalonDock are you using?
}