1. 程式人生 > >在RichTextBox控件中替換文本文字

在RichTextBox控件中替換文本文字

bject ron void pri ima geb bubuko sele src

實現效果:

  技術分享圖片

知識運用:

  RichTextBox控件的SelectedText屬性

實現代碼:

        private void button1_Click(object sender, EventArgs e)
        {
            if (richTextBox1.SelectedText.ToString()!= "")
            {
                richTextBox1.SelectedText = textBox1.Text;
            }
            else { MessageBox.Show("請選擇要替換的文字"); }
        }

在RichTextBox控件中替換文本文字