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