我的ViewModel
中有一个字符串列表,格式如下:
This is an <b>example.<b>
我希望在我的视图中有一些文本控件,它将通过DataBinding
*显示格式化文本,如下所示:
这是一个示例。
我找不到任何可以表现得像这样的内置控件。
有谁知道如何处理它?</ p>
答案 0 :(得分:5)
您可以使用Run:
<TextBlock FontSize="30">
<Run>This is an</Run>
<Run FontWeight="Bold" Text=" example"/>
</TextBlock>
为此,您必须解析字符串,选择粗体部分,并在后面的代码中定义内容。一个非常简单的例子可能如下所示:
string example = @"This is an <b>example.</b>";
var str = example.Split(new string[] { "<b>", "</b>" }, StringSplitOptions.None);
for (int i = 0; i < str.Length; i++)
myTextBlock.Inlines.Add(new Run { Text = str[i], FontWeight = i % 2 == 1 ? FontWeights.Bold : FontWeights.Normal });
编辑 - 使用绑定
如果你想将上述程序与Binding一起使用,那么它不是那么简单 - TextBlock.Inlines 不是 DependencyProperty ,所以我们不能使用它。然而有一种方法可以做到这一点 - 你需要以某种方式扩展你的TextBlock - 这是另一个陷阱 - 它的密封类所以没有继承。在这种情况下,我们将不得不使用另一个类(here is also a good example):
public static class TextBlockExtension
{
public static string GetFormattedText(DependencyObject obj)
{ return (string)obj.GetValue(FormattedTextProperty); }
public static void SetFormattedText(DependencyObject obj, string value)
{ obj.SetValue(FormattedTextProperty, value); }
public static readonly DependencyProperty FormattedTextProperty =
DependencyProperty.Register("FormattedText", typeof(string), typeof(TextBlockExtension),
new PropertyMetadata(string.Empty, (sender, e) =>
{
string text = e.NewValue as string;
var textBl = sender as TextBlock;
if (textBl != null)
{
textBl.Inlines.Clear();
var str = text.Split(new string[] { "<b>", "</b>" }, StringSplitOptions.None);
for (int i = 0; i < str.Length; i++)
textBl.Inlines.Add(new Run { Text = str[i], FontWeight = i % 2 == 1 ? FontWeights.Bold : FontWeights.Normal });
}
}));
}
然后你可以在xaml中使用它:
<TextBlock local:TextBlockExtension.FormattedText="{Binding MyText}"/>
答案 1 :(得分:0)
您可以使用RichTextBlock控件。类似的东西:
<RichTextBlock>
<Paragraph>
This is an <Bold>example</Bold>
</Paragraph>
</RichTextBlock>