粗体,内联,文本块的超链接集合?

时间:2015-04-17 13:19:20

标签: c# wpf

获取代码:

results.senselist += "\n" + sense_list + Orth + gramGroup + "\n";
<TextBlock Text="{Binding senselist"}></TextBlock>

我希望gramGroup是超链接,其他颜色和sense_list是粗体或内联。

希望,所有代码。

3 个答案:

答案 0 :(得分:2)

您需要根据需要在xaml中定义Inlines并绑定这些内容。

<TextBlock>
    <TextBlock.Inlines>
        <Run Text="{Binding PlainText1}"></Run>
        <Hyperlink>
            <TextBlock Text="{Binding LinkText}"></TextBlock>
        </Hyperlink>
        <Run Text="{Binding PlainText2}"></Run>
        <Run Text="{Binding ColorText}" Foreground="Red"></Run>
    </TextBlock.Inlines>
</TextBlock>

DataContext可能是

public class MyDataContext
{
    public MyDataContext()
    {
        PlainText1 = "This is";
        LinkText = "some link";
        PlainText2 = "with text";
        ColorText = "and red color :)";
    }

    public string LinkText { get; set; }
    public string ColorText { get; set; }
    public string PlainText1{ get; set; }
    public string PlainText2 { get; set; }
}

在屏幕中呈现如下 enter image description here

我错过了问题中的大胆部分。只需在FontWeight="Bold"中设置TextBlock即可。

答案 1 :(得分:0)

无法设置相同文字的不同部分。 您应该使用两个不同的TextBlock:

<StackPanel Orientation="Horizontal">
    <TextBlock Text="sense_list " FontWeight="Bold"/>
    <TextBlock Width="Auto">
       <Hyperlink NavigateUri="http://www.google.com">
           gramGroup
       </Hyperlink>
    </TextBlock>
</StackPanel>

答案 2 :(得分:0)

您可以使用标签,因为它是内容控件,您可以编写一个转换器,将字符串转换为具有所有格式的文本块。我假设在两个字符串之间有一个分隔符来区分它们。请参阅下面的代码。

<Window.Resources>
    <local:TextBlockConverter x:Key="Conv"/>
</Window.Resources>

<Label Content="{Binding senselist,Converter={StaticResource Conv}}"></Label>
class TextBlockConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        TextBlock txt = new TextBlock();
        string str = (string)value;
        string[] strList = str.Split('|');
        Run run1 = new Run(strList[0]);
        run1.FontWeight = FontWeights.Bold;
        Run run2 = new Run(strList[1]);
        Hyperlink hyp = new Hyperlink(run2);
        txt.Inlines.Add(run1);
        txt.Inlines.Add(hyp);
        return txt;
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

 senselist = "sense_list" + "|" + "gramGroup";