在 .Net 中,如何知道剪贴板设置为什么格式
Clipboard 对象有一个 ContainsData() 方法,可以判断是否可以检索特定格式,但是有什么方法可以判断首先使用什么格式来设置该数据呢?
The Clipboard object has a ContainsData() method that can tell if a specific format can be retrieved, but is there any way to tell what format was used to set that data in the first place?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 GetDataObject 获取 < a href="http://msdn.microsoft.com/en-us/library/system.windows.idataobject_members.aspx" rel="nofollow noreferrer">IDataObject 实例,然后调用 GetFormats 获取支持的格式列表。
You can use GetDataObject to get an IDataObject instance, then call GetFormats on that to get a list of the supported formats.