我有一个WPF RichTextBox的问题,我正在提取它的XAML代码并将其保存到一个txt文件中。当我将生成的XAML代码复制粘贴到XAMLtoHTML转换器(如http://blogs.msdn.com/wpfsdk/archive/2006/05/25/606317.aspx)时,一定会发生一些错误,因为我总是得到一个空结果!
如果我在RichTextBox中写入test,则会得到以下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="Text" NumberSubstitution.Substitution="AsCulture" FontFamily="Segoe UI" FontStyle="Normal" FontWeight="Normal" FontStretch="Normal" FontSize="12" 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>test</Run></Paragraph></Section>
请帮忙!!有什么想法吗?

最佳答案

XamlToHtml需要一个FlowDocument,RichTextBox会给您一个Section。该部分是包含所需文本的完全有效的部分,但是除了完整的FlowDocument,XamlToHtml不会处理任何内容。
用一个<FlowDocument>元素包装这个部分,您应该可以很好地进行。当然,您必须调整名称空间(xmlns),因此我建议您将其作为XmlDocument而不是文本进行操作。

关于c# - XAML到HTML的转换-WPF RichTextBox,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2609694/

10-14 11:13