编程论坛
注册
登录
编程论坛
→
C# 论坛
C#中如何复制一行文本
XQY521
发布于 2015-03-30 19:15, 506 次点击
如何在DataGridView控件中复制其中一行文本,复制哪一行就能在文本文档中粘贴出来,求指教
1 回复
#2
wangnannan
2015-03-31 14:33
程序代码:
复制:
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);
}
}
主要通过调用Clipborad的API完成。
1