zoukankan      html  css  js  c++  java
  • C# 复制、粘贴文本信息到剪贴板

    复制:
    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完成。

  • 相关阅读:
    冲刺周2
    java 流
    java 线程控制方法
    java界面编程(下)
    java 界面编程(上)
    java数组
    java 异常
    java程序中的存储区
    java中稍微有些陌生的关键字
    IOCP服务器搭建
  • 原文地址:https://www.cnblogs.com/testsec/p/6095518.html
Copyright © 2011-2022 走看看