C#实现从windows剪贴板获取内容的方法
更新时间:2015年05月25日 09:36:25 作者:企鹅不笨
这篇文章主要介绍了C#实现从windows剪贴板获取内容的方法,涉及C#操作剪贴板的相关技巧,非常简单实用,需要的朋友可以参考下
本文实例讲述了C#实现从windows剪贴板获取内容的方法。分享给大家供大家参考。具体实现方法如下:
using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Data; using System.Windows.Forms; public class MainClass { public static void Main(string[] args) { IDataObject iData = Clipboard.GetDataObject(); if (iData.GetDataPresent(DataFormats.Text)) { Console.WriteLine((String)iData.GetData(DataFormats.Text)); } if (iData.GetDataPresent(DataFormats.Bitmap)) { Image img = (Bitmap)iData.GetData(DataFormats.Bitmap); } } }
希望本文所述对大家的C#程序设计有所帮助。
相关文章
winform中的ListBox和ComboBox绑定数据用法实例
这篇文章主要介绍了winform中的ListBox和ComboBox绑定数据用法,实例分析了将集合数据绑定到ListBox和ComboBox控件的技巧,具有一定参考借鉴价值,需要的朋友可以参考下2014-12-12
最新评论