8

RichTextBox で文字「A」に遭遇するたびに赤でペイントするにはどうすればよいですか?

4

4 に答える 4

27

これを試して:

static void HighlightPhrase(RichTextBox box, string phrase, Color color) {
  int pos = box.SelectionStart;
  string s = box.Text;
  for (int ix = 0; ; ) {
    int jx = s.IndexOf(phrase, ix, StringComparison.CurrentCultureIgnoreCase);
    if (jx < 0) break;
    box.SelectionStart = jx;
    box.SelectionLength = phrase.Length;
    box.SelectionColor = color;
    ix = jx + 1;
  }
  box.SelectionStart = pos;
  box.SelectionLength = 0;
}

..。

private void button1_Click(object sender, EventArgs e) {
  richTextBox1.Text = "Aardvarks are strange animals";
  HighlightPhrase(richTextBox1, "a", Color.Red);
}
于 2009-01-18T20:47:31.457 に答える
2

このジョブを実行するためのラッパークラスの抜粋を次に示します。

    private delegate void AddMessageCallback(string message, Color color);

    public void AddMessage(string message)
    {
        Color color = Color.Empty;

        string searchedString = message.ToLowerInvariant();

        if (searchedString.Contains("failed")
            || searchedString.Contains("error")
            || searchedString.Contains("warning"))
        {
            color = Color.Red;
        }
        else if (searchedString.Contains("success"))
        {
            color = Color.Green;
        }

        AddMessage(message, color);
    }

    public void AddMessage(string message, Color color)
    {
        if (_richTextBox.InvokeRequired)
        {
            AddMessageCallback cb = new AddMessageCallback(AddMessageInternal);
            _richTextBox.BeginInvoke(cb, message, color);
        }
        else
        {
            AddMessageInternal(message, color);
        }
    }

    private void AddMessageInternal(string message, Color color)
    {
        string formattedMessage = String.Format("{0:G}   {1}{2}", DateTime.Now, message, Environment.NewLine);

        if (color != Color.Empty)
        {
            _richTextBox.SelectionColor = color;
        }
        _richTextBox.SelectedText = formattedMessage;

        _richTextBox.SelectionStart = _richTextBox.Text.Length;
        _richTextBox.ScrollToCaret();
    }

これで、で呼び出すと、AddMessage("The command failed")自動的に赤で強調表示されます。または、で呼び出してAddMessage("Just a special message", Color.Purple)特別な色を定義することもできます(たとえば、メッセージの内容に関係なく、キャッチブロック内で特定の色を定義すると便利です)

于 2009-11-27T07:11:34.320 に答える
1

これは、EJ Brennanの回答のC#コードです。

public string Highlight(object Search_Str, string InputTxt, string StartTag, string EndTag) 
{
    return Regex.Replace(InputTxt, "(" + Regex.Escape(Search_Str) + ")", StartTag + "$1" + EndTag, RegexOptions.IgnoreCase);
}
于 2009-01-18T20:53:33.863 に答える
1

それがあなたが探しているものである場合、入力中にこれは機能しませんが、これを使用して部分文字列を強調表示します。

Function Highlight(ByVal Search_Str As Object, ByVal InputTxt As String, ByVal StartTag As String, ByVal EndTag As String) As String
    Highlight = Regex.Replace(InputTxt, "(" & Regex.Escape(Search_Str) & ")", StartTag & "$1" & EndTag, RegexOptions.IgnoreCase)
End Function

次のように呼び出します。

Highlight("A", "すべての A を赤くする", [span class=highlight]', '[/span]')

クラス「ハイライト」には、必要な色分け/書式設定があります。

.highlight {text-decoration: none;color:black;background:red;}

ところで:これらの角かっこを角かっこに変更する必要があります...入力しても通り抜けません...

于 2009-01-18T19:13:26.063 に答える