启网、虚拟主机、域名注册、服务器合租
精致合租、5人、10人、15人服务器合租、freebsd合租
当前位置:站长中国 > C#教程 > C# 复制与粘贴

C# 复制与粘贴

2008 - 12 - 16  作者:  来源:  浏览:613  评论: 发布评论 问高手
推荐:启网 - 专业的主机、服务器合租提供商 17hz.net - 5年服务器合租精品服务
    

复制:

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完成。


 


 


TextBox复制


txtpass.SelectAll();

txtpass.Copy();




推荐教程