这是在C#代码中使用HTML标记直接粘贴TextBlock Inlines的任何解决方案,如下所示:

string example = "Here is <Bold>bold</Bold> text, and here is <Italic>italic</Italic>.";
TextBlock.Inlines.Add(example);

最佳答案

您可以看一下this项目

关于c# - WPF Textblock/直接通过Inlines.Add()设置BOLD,ITALIC,UNDERLINE标签,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10447975/

10-13 02:00