gpt4 book ai didi

c# - 如何更改文本框特定的文本颜色?

转载 作者:行者123 更新时间:2023-11-30 14:13:08 25 4
gpt4 key购买 nike

如果链接无效,我想更改无效链接的文本颜色,它的颜色应该是红色。我的链接在文本框中

if (!IsLinkWorking(link))
{
//Here you can show the error. You don't specify how you want to show
TextBox2.Text += string.Format(
"{0}\nNot working\n\n ", link);
// this should be in red which is in textbox2.text
}
else
{
TextBox2.Text += string.Format("{0}\n working\n\n", link);
}

最佳答案

您可以使用 ForeColor 属性更改 TextBox 的文本颜色,但不能以不同的颜色显示部分文本。为此,您需要一个 RichTextBox 或类似的东西。

要更改 TextBox 控件的文本颜色:

TextBox2.ForeColor = System.Drawing.Color.Red;
TextBox2.Text += string.Format("{0}\nNot working\n\n ", link);

关于c# - 如何更改文本框特定的文本颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15220980/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com