gpt4 book ai didi

c# - 我可以动态地将 TextBlock.Text 的一部分设置为不同的颜色吗?

转载 作者:太空狗 更新时间:2023-10-29 23:57:48 25 4
gpt4 key购买 nike

我的主窗体中有 TextBlock。我在应用程序运行期间将 Text 属性设置为不同的字符串。

我希望能够为特定字符串的部分着色。

伪代码:

if(a < 0) txbStatus.Text = string.Format("{0} <RED>{1}</RED>",  a, b);
else txbStatus.Text = string.Format("{0} <BLUE>{1}</RED>", a, b);

最佳答案

您可以按照您想要的方式拆分字符串,然后使用 foreach() 循环尝试拆分字符串

TextBlockName.Inlines.Add(new Run("colored text") {Foreground = Brushes.Blue});

关于c# - 我可以动态地将 TextBlock.Text 的一部分设置为不同的颜色吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2891736/

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