转到已修改
由于RichTextbox的Xaml属性不是依赖项属性,因此我创建了一个自定义的RichTextbox,我可以在其中与xaml属性进行交互:
<local:RichTextUserControl RtfXaml="{Binding Path=Text, Converter={StaticResource RichTextBoxContentConverter}}" />
我正在将以下文本绑定到xaml属性,它正常工作:
<Section xml:space=\"preserve\" HasTrailingParagraphBreakOnPaste=\"False\" xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\">
<Paragraph FontSize=\"20\" FontFamily=\"Segoe WP\" Foreground=\"#FFFFFFFF\" FontWeight=\"Normal\" FontStyle=\"Normal\" FontStretch=\"Normal\" TextAlignment=\"Left\">
<Run Text=\"Some text without formatting\" />
<Italic>Some italic text</Italic>
<Underline>I am UnderLined</Underline>
</Paragraph>
</Section>
我通过转换器绑定它,在那里我搜索笑脸字符(例如:);):D等等...)并用图像替换它们,如果我在中间插入以下代码段落文本崩溃了:
<InlineUIContainer>
<Image Source="ApplicationIcon.png"/>
</InlineUIContainer>
(只有在绑定时才有例外)
被修改:
所以我发现这是一个糟糕的方法,我开始以这种方式实现它:
<RichTextBox Tag="{Binding Path=MessageText}" TextWrapping="Wrap" Loaded="loaded"/>
private void loaded(object sender, RoutedEventArgs e)
{
var richTextBox= sender as RichTextBox;
Object o = XamlReader.Load(string.Format(XamlTemplate, richTextBox.Tag.ToString()));
var section = o as Section;
if (section != null)
{
richTextBox.Blocks.Clear();
var tempBlocks = section.Blocks.ToList();
section.Blocks.Clear();
foreach (Block block in tempBlocks)
richTextBox.Blocks.Add(block);
}
private const string XamlTemplate = "<Section xml:space=\"preserve\" HasTrailingParagraphBreakOnPaste=\"False\" xmlns=\"http://schemas.microsoft.com/winfx/2006/xaml/presentation\"><Paragraph FontSize=\"20\" FontFamily=\"Segoe WP\" Foreground=\"#FFFFFFFF\" FontWeight=\"Normal\" FontStyle=\"Normal\" FontStretch=\"Normal\" TextAlignment=\"Left\"><Run Text=\"{0}\" /><Image Source=\"ApplicationIcon.png\" Width=\"15\" Height=\"15\"/></InlineUIContainer> </Paragraph></Section>";
所以我正在解析带有文本和字符串的文本框加载事件上的Xaml。 XamlTemplate是一个带有笑脸模板的硬编码文本。
我的笑脸正在以这种方式工作,但当我在列表框中向下滚动时,这些Richtextbox的数量很多,滚动开始跳跃,这真的很烦人。
但是,当我将列表框项目更改为固定大小时,它工作正常,但我需要动态更改项目的大小,有关于此的任何想法吗?
答案 0 :(得分:1)
尝试使用此代码。
private Regex rxForbidden = new Regex(@"[<;]", RegexOptions.IgnoreCase);
string[] stringArray;
private void richTextbox_Loaded(object sender, RoutedEventArgs e)
{
var richTextBox= sender as RichTextBox;
string t = richTextBox.Tag.ToString();
Paragraph myParagraph = new Paragraph();
if (rxForbidden.IsMatch(t))
{
s = rxForbidden.Split(t);
richTextBox.Blocks.Add(myParagraph);
for (int i = 0; i < s.Count(); i++)
{
if (s[i] != null && s[i] != "")
{
Run txt = new Run();
txt.Text = s[i];
myParagraph.Inlines.Add(txt);
}
else
{
Image MyImage = new Image();
MyImage.Source = new BitmapImage(new Uri("/RichTextBoxText;component/smiley_72x72.png", UriKind.Relative));
MyImage.Height = 30;
MyImage.Width = 30;
InlineUIContainer MyUI = new InlineUIContainer();
MyUI.Child = MyImage;
myParagraph.Inlines.Add(MyUI);
}
}
richTextBox.Blocks.Add(myParagraph);
}
答案 1 :(得分:0)
我认为您的图片URI无效。 它应该是这样的:
<InlineUIContainer>
<Image Source="/YourApplication;component/ApplicationIcon.png"/>
</InlineUIContainer>