C # send data to the clipboard and obtain data from the clipboard

Source: Internet
Author: User

C # send data to the clipboard and obtain data from the clipboard

Take winform as an example. design two textbox controls named textbox1 and textbox2 respectively. design two button controls named btn_send and btn_get respectively.

The Code is as follows:

Private void btn_send_Click (object sender, EventArgs e) {try {Clipboard. SetText (textBox1.Text); MessageBox. Show ("the text box content has been successfully copied to the Clipboard! ");} Catch (Exception) {MessageBox. Show (" Error! ") ;}} Private void btn_get_Click (object sender, EventArgs e) {string txt2 = textBox2.Text; try {IDataObject iData = Clipboard. getDataObject (); if (iData. getDataPresent (DataFormats. text) {// MessageBox. show (string) iData. getData (DataFormats. text); textBox2.Text = (string) iData. getData (DataFormats. unicodeText);} else {MessageBox. show ("data in the current clipboard cannot be converted to text", "error") ;}} catch (Exception) {MessageBox. show ("Error ");}}


Source code download

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.