1

データベースから読み込まれているテキストがあります。このテキストは、xaml セクション オブジェクトの文字列表現です。このテキストは、コンボ ボックスからの選択に基づいて異なります。テキストの例を次に示します。

<Section xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xml:space="preserve" TextAlignment="Left" LineHeight="Auto" IsHyphenationEnabled="False" xml:lang="en-us" FlowDirection="LeftToRight" NumberSubstitution.CultureSource="User" NumberSubstitution.Substitution="AsCulture" FontFamily="Verdana" FontStyle="Normal" FontWeight="Normal" FontStretch="Normal" FontSize="11" Foreground="#FF000000" Typography.StandardLigatures="True" Typography.ContextualLigatures="True" Typography.DiscretionaryLigatures="False" Typography.HistoricalLigatures="False" Typography.AnnotationAlternates="0" Typography.ContextualAlternates="True" Typography.HistoricalForms="False" Typography.Kerning="True" Typography.CapitalSpacing="False" Typography.CaseSensitiveForms="False" Typography.StylisticSet1="False" Typography.StylisticSet2="False" Typography.StylisticSet3="False" Typography.StylisticSet4="False" Typography.StylisticSet5="False" Typography.StylisticSet6="False" Typography.StylisticSet7="False" Typography.StylisticSet8="False" Typography.StylisticSet9="False" Typography.StylisticSet10="False" Typography.StylisticSet11="False" Typography.StylisticSet12="False" Typography.StylisticSet13="False" Typography.StylisticSet14="False" Typography.StylisticSet15="False" Typography.StylisticSet16="False" Typography.StylisticSet17="False" Typography.StylisticSet18="False" Typography.StylisticSet19="False" Typography.StylisticSet20="False" Typography.Fraction="Normal" Typography.SlashedZero="False" Typography.MathematicalGreek="False" Typography.EastAsianExpertForms="False" Typography.Variants="Normal" Typography.Capitals="Normal" Typography.NumeralStyle="Normal" Typography.NumeralAlignment="Normal" Typography.EastAsianWidths="Normal" Typography.EastAsianLanguage="Normal" Typography.StandardSwashes="0" Typography.ContextualSwashes="0" Typography.StylisticAlternates="0"><Paragraph><Run>Hello World      </Run></Paragraph></Section>

このテキストを取得し、適切にフォーマットして、アプリケーションのコントロールに表示するために必要なもの。FlowDocumentViewerこれを行うには、 (私は を使用しています)が必要になると思いますFlowDocumentScrollViewer

私が理解できないのは、テキストをフロー ドキュメントに取得して、ドキュメント ビューアーに関連付ける (バインドする) 方法です (私はこれに慣れていません)。

誰でも助けることができますか?

4

2 に答える 2

6

を使用して、ドキュメントに追加できる文字列からXamlReader.Parseを作成できます。Section

于 2012-02-22T20:55:41.773 に答える
1

完全なコードを追加しましょう。

public static FlowDocument ToFlowDocument(string xmlString)
{
    var result = new FlowDocument();

    if (!string.IsNullOrEmpty(xmlString))
    {
        result.Blocks.Add((Section)XamlReader.Parse(xmlString));
    }

    return result;        
}
于 2016-05-25T08:20:24.467 に答える