开发者

Silverlight InlineCollection.Add(InlineUIContainer) missing?

开发者 https://www.devze.com 2023-02-02 17:09 出处:网络
I\'m having difficulty adding the inline of specific type InlineUIContainer into the InlineCollection (Content property) of a TextBlock. It appears the .Add() method of InlineCollection doesn\'t accep

I'm having difficulty adding the inline of specific type InlineUIContainer into the InlineCollection (Content property) of a TextBlock. It appears the .Add() method of InlineCollection doesn't accept this type, however you can clearly set it through XAML without explicitly marking the content as a InlineContainer, as demonstrated in many examples:

http://msdn.microsoft.com/en-us/library/system.windows.documents.inlineuicontainer.aspx

Is it possible to prog开发者_StackOverflow中文版ramatically add one of these as in the following?

Target.Inlines.Add(new Run() { Text = "Test" });
Target.Inlines.Add(new InlineUIContainer() { 
Child = new Image() { Source = new BitmapImage(new Uri("http://example.com/someimage.jpg")) } });
Target.Inlines.Add(new Run() { Text = "TestEnd" });

I have a feeling what's going on is that Silverlight is using a value converter to create the runs when specified in XAML as in the example which doesn't use InlineContainer, but I'm not sure where to look to find out.

The specific error I'm getting is as follows:

Cannot add value of type 'System.Windows.Documents.InlineUIContainer' to a 'InlineCollection' in a 'System.Windows.Controls.TextBlock'.


As pointed out by Jedidja, we need to use RichTextBox to do this in Silverlight.


You can't Add() Runs directly, but you can add Spans containing Runs.

Interestingly, you can also do this:

textBlock.Inlines.Clear();
textBlock.Inlines.Add(new Span());
textBlock.Inlines[0] = new Run();

Not that it's a good idea to hack around what the framework is actively trying to prevent you from doing.

P.S. If you can't figure out what XAML is doing, inspect the visual tree.

0

精彩评论

暂无评论...
验证码 换一张
取 消