C#RichTextBox實現(複製, 剪下,粘貼,全選)

來源:互聯網
上載者:User

轉:http://www.cnblogs.com/JuneZhang/archive/2011/05/20/2051973.html

 

實現該菜單功能主要有兩種方法:

第一種:通過發送擊鍵到應用程式來實現。

先焦點定位到當前活動的RichTextBox,然後再通過發送擊鍵命令來實現操作功能  

richTextBox1.Focus();
SendKeys.Send("^a");//全選
SendKeys.Send("^c");//複製
SendKeys.Send("^x");//剪下
SendKeys.Send("^v");//粘貼

  第二種:直接通過命令操作剪貼簿實現  

//複製
Clipboard.SetData(DataFormats.Rtf, richTextBox1.SelectedRtf);//複製RTF資料到剪貼簿
  
//剪下
Clipboard.SetData(DataFormats.Rtf, richTextBox1.SelectedRtf);//複製RTF資料到剪貼簿
richTextBox1.SelectedRtf="";//再把當前選取的RTF內容清除掉,當前就實現剪下功能了.
  
//粘貼
richTextBox1.Paste();//把剪貼簿上的資料粘貼到目標RichTextBox
  
//全選(其中全選又有兩種方式)
richTextBox1.Focus();//設定先焦點定位到當前活動的RichTextBox,這一句很重要,否則它不能正確執行
//另一種則是通過Select(int start,int length)方法來實現
richTextBox1.Select(0, richTextBox1.Rtf.Length);//richTextBox1.Rtf.Length代表RichTextBox中文字的長度
//一種是直接採用NET架構當中提供的SelectAll()方法,進行全選
//richTextBox1.SelectAll();
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.