1

私はワープロを作成していますが、ユーザーがタップ/ホールド/ドラッグでWindows Phoneで選択したテキストのみを太字にする機能をユーザーに持たせたいと考えています。Filebox.SelectedText (ファイルボックスはテキストボックスの名前です) を使用してユーザーが選択したテキストを検出する方法は知っていますが、そこからどこへ行くべきかわかりません - 選択されたテキストを取得し、選択されたテキストのみを作成するにはどうすればよいですか?テキストは太字?

注: ComponentOne の Rich Textbox コントロールを使用しています。

4

1 に答える 1

0

物件をご利用いただけRichTextBox.Selectionます。

例えば:

private void ModifySelectedText()
{
   // Determine if text is selected in the control. 
   if (richTextBox1.SelectionLength > 0)
   {
      // Set the color of the selected text in the control.
      richTextBox1.SelectionColor = Color.Red;
      // Set the font of the selected text to bold and underlined.
      richTextBox1.SelectionFont = new Font("Arial",10,FontStyle.Bold | FontStyle.Underline);
      // Protect the selected text from modification.
      richTextBox1.SelectionProtected = true;
   }
}
于 2013-03-10T20:52:19.647 に答える