有没有更优雅的方法来执行以下操作?
基本上我需要一种简单的方法来以编程方式构建一个WrapPanel
(或其他 FrameworkElement):
- 正确包装
- 允许某些单词有粗体文本
- 允许某些单词有斜体文本
- 允许其他格式,例如颜色、背景
- 理想的方法是将例如“
This is <b>bold</b> and this is <i>italic</i> text.
”转换为适当的 FrameworkElement,这样我就可以将它添加到 StackPanel并显示它。
代码:
using System.Windows;
using System.Windows.Controls;
namespace TestAddTextBlock2343
{
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
WrapPanel wp = new WrapPanel();
wp.AddTextBlock("This is a sentence with ");
{
TextBlock tb = wp.AddTextBlockAndReturn("bold text");
tb.FontWeight = FontWeights.Bold;
}
wp.AddTextBlock(" and ");
{
TextBlock tb = wp.AddTextBlockAndReturn("italic text");
tb.FontStyle = FontStyles.Italic;
}
wp.AddTextBlock(" in it.");
}
}
public static class XamlHelpers
{
public static TextBlock AddTextBlockAndReturn(this WrapPanel wp, string text)
{
TextBlock tb = new TextBlock();
tb.Text = text;
wp.Children.Add(tb);
return tb;
}
public static void AddTextBlock(this WrapPanel wp, string text)
{
TextBlock tb = wp.AddTextBlockAndReturn(text);
}
}
}