You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
599 B
C#

Copying from the Clipboard
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);
}
}
}