Exemple #1
0
 private void btnCopy_Click(object sender, EventArgs e)
 {
     ClipboardClass.Copy(txtMain);
 }
Exemple #2
0
 private void btnSelectAll_Click(object sender, EventArgs e)
 {
     ClipboardClass.SelectAll(txtMain);
 }
Exemple #3
0
 private void btnFind_Click(object sender, EventArgs e)
 {
     ClipboardClass.SearchText(txtMain, txtFind.Text);
 }
Exemple #4
0
 private void btnPaste_Click(object sender, EventArgs e)
 {
     ClipboardClass.Paste(txtMain);
 }