如何枚举剪贴板格式
使用 WPF,我可以从剪贴板获取给定格式的数据:
object test = Clipboard.GetGata (format);
如何枚举剪贴板中存在的格式列表?
With WPF, I can get data in a given format from the clipboard:
object test = Clipboard.GetGata (format);
How can I enumerate the list of formats present in the clipboard?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下
IDataObject
类。Have a look at the
IDataObject
class.这应该为您提供 DataFormats 中的所有字段
只会为您提供与剪贴板匹配的内容。
this should give you all the Fields from DataFormats
will give you just the ones that match the clipboard.