WPF 列表框复制到剪贴板
我正在尝试使用 CTRL+C 将标准 WPF ListBox 选定的项目(显示的)文本复制到剪贴板。有没有什么简单的方法可以实现这一点。如果它适用于应用程序中的所有列表框。
I am trying to copy a standard WPF ListBox selected Item (displayed) text to clipboard on CTRL+C. Is there any simple way to achieve this. If it is something that works for all the listboxes in the app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您在 WPF 中,因此您可以尝试附加的行为
首先你需要一个像这样的类:
然后你就有了像这样的 XAML
更新:对于最简单的情况,您可以通过以下方式访问文本:
但是就像 ListBoxItem 可以绑定到对象一样,ItemTemplate 也可能不同,因此您不能在实际项目中依赖它。
As you're in WPF so you could try the attached behaviours
First you need a class like this:
Then you have the XAML like this
Updates: For the simplest case, you can access the text in the below way:
But just like the ListBoxItem could be bound to object, the ItemTemplate could be different as well, so you can't rely on it in real projects.