专栏名称: MC_DEV_JIN
片刻之欢娱,不如须臾之所学也!
今天看啥  ›  专栏  ›  MC_DEV_JIN

C#操作黏贴板

MC_DEV_JIN  · 简书  ·  · 2017-08-24 19:00

文章预览


复制:

private void button1_Click(object sender, System.EventArgs e) {

// Takes the selected text from a text box and puts it on the clipboard.

if(textBox1.SelectedText != ”")

Clipboard.SetDataObject(textBox1.SelectedText);

}


粘贴:

private void button2_Click(object sender, System.EventArgs e) {

// Declares an IDataObject to hold the data returned from the clipboard.

// Retrieves the data from the clipboard.

IDataObject iData = Clipboard.GetDataObject();

// Determines whether the data is in a format you can use.

if(iData.GetDataPresent(DataFormats.Text)) {

// Yes it is, so display it in a text box.

textBox2.Text = (String)iData.GetData(DataFormats.Text);

}

}

………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览