本文介绍了如何枚举剪贴板格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用WPF,我可以从剪贴板中获取给定格式的数据:
With WPF, I can get data in a given format from the clipboard:
对象测试= Clipboard.GetGata(格式);
object test = Clipboard.GetGata (format);
如何枚举剪贴板中存在的格式列表?
How can I enumerate the list of formats present in the clipboard?
推荐答案
看看
Have a look at the IDataObject
class.
IDataObject content = Clipboard.GetDataObject();
string [] formats = clipContent.GetFormats();
这篇关于如何枚举剪贴板格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!