This question is locked. New answers and comments are not allowed.
I'm just starting out with RichTextBox and having an issue displaying InlineUIElements and ImageInline objects.
I've been using the rest of the suite without this type of issue.
The odd thing is that it shows up at design time.
Is there anything I'm missing?
<UserControl x:Class="FOCUSAlert.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" d:DesignWidth="860" d:DesignHeight="530"> <Grid x:Name="LayoutRoot"> <telerik:RadRichTextBox> <telerik:RadRichTextBox.Document> <telerik:RadDocument LayoutMode="Paged"> <telerik:Section PageMargin="10, 10, 10, 10"> <telerik:Table> <telerik:TableRow> <telerik:TableCell TextAlignment="Center" VerticalAlignment="Center"> <telerik:Paragraph> <telerik:InlineUIContainer Width="230" Height="50"> <StackPanel > <Image Source="Images\team challenge logo.jpg"/> </StackPanel> </telerik:InlineUIContainer> <telerik:ImageInline x:Name="logo" Extension="jpg" UriSource="Images\team challenge logo.jpg" Height="50" Width="250"/> </telerik:Paragraph> </telerik:TableCell > <telerik:TableCell TextAlignment="Center" VerticalAlignment="Center"> <telerik:Paragraph> <telerik:Span FontWeight="ExtraBold" ForeColor="Red" FontSize="16" Text="DEPARTMENT NAME" /> </telerik:Paragraph> <telerik:Paragraph TextAlignment="Center"> <telerik:Span FontWeight="ExtraBold" FontSize="16" Text="ALERT" /> </telerik:Paragraph> </telerik:TableCell> <telerik:TableCell> <telerik:Paragraph> <telerik:Span Text="Document No.:" /> </telerik:Paragraph> </telerik:TableCell> <telerik:TableCell> <telerik:Paragraph> <telerik:Span Text="XXX" /> </telerik:Paragraph> </telerik:TableCell> </telerik:TableRow> </telerik:Table> </telerik:Section> </telerik:RadDocument> </telerik:RadRichTextBox.Document> </telerik:RadRichTextBox> </Grid> </UserControl>