MSDNのドキュメントでは、XAMLプロパティを使用してRichTextBoxの一部である画像を書き出すことはできません。これは問題ありませんが、私はそれを回避し、ブロックを手動で見直して対処することができます。xamlを使用してsilverlight richtextareaに画像を読み込む
私の質問は、Imageを組み込むようにXAMLを手動で再構築すると、RichTextBoxがxamlから読み込むことができるのですか?
私は反射と手動XAMLエクスポートを既に実装しており、画像なしで完全に動作します。写真有り
それは、この生成します。私は、XAMLのプロパティと休憩を経てRTBにフィードバック
<Section xml:space="preserve" HasTrailingParagraphBreakOnPaste="False" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<Paragraph TextAlignment="Left" FontSize="20" FontFamily="Portable User Interface" FontWeight="Normal" FontStyle="Normal" FontStretch="Normal" Foreground="#FF000000" >
<Run Text="Test" FontSize="20" FontFamily="Portable User Interface" FontWeight="Normal" FontStyle="Normal" FontStretch="Normal" Foreground="#FF000000" />
</Paragraph>
<Paragraph TextAlignment="Left" FontSize="20" FontFamily="Portable User Interface" FontWeight="Normal" FontStyle="Normal" FontStretch="Normal" Foreground="#FF000000" >
<InlineUIContainer>
<Image Source="./desert.jpg" Height="150" Width="200" />
</InlineUIContainer>
<Run Text="" FontSize="20" FontFamily="Portable User Interface" FontWeight="Normal" FontStyle="Normal" FontStretch="Normal" Foreground="#FF000000" />
</Paragraph>
</Section>
を! (例外はちょうどIllegalArgmentExceptionは「価値」を言って、役に立たないです。
あなただけInlineUIContainerセクションの罰金を取る場合は!
私は画像の場所が間違っているとその可能性の問題があればうまくできませんまたはリッチテキストボックスがちょうど離れでコードから画像を受け入れない
MSDNドキュメントがそれを示しているので、私はそれがXAMLからの画像を指定するために、おそらくだと思う唯一の理由は、次のとおりです。。http://msdn.microsoft.com/en-us/library/ee681613(VS.95).aspx
任意のアイデア
?Ta、
アンディ。
私は時間があれば、私はちょうどそれにこのくらいの時間を費やしたくない、コードにSilverlightとデバッグのためのシンボルを得ることができると思います!助け
として
: – Andy