我正在尝试创建一个标记扩展,它将采用一串 HTML,将其转换为 FlowDocument,然后返回 FlowDocument。我对创建标记扩展还很陌生,我希望这对有更多经验的人来说是显而易见的。这是我的代码:
[MarkupExtensionReturnType(typeof(FlowDocument))]
public class HtmlToXamlExtension : MarkupExtension
{
public HtmlToXamlExtension(String source)
{
this.Source = source;
}
[ConstructorArgument("source")]
public String Source { get; set; }
public Type LocalizationResourceType { get; set; }
public override object ProvideValue(IServiceProvider serviceProvider)
{
if (this.Source == null)
{
throw new InvalidOperationException("Source must be set.");
}
FlowDocument flowDocument = new FlowDocument();
flowDocument.PagePadding = new Thickness(0, 0, 0, 0);
string xaml = HtmlToXamlConverter.ConvertHtmlToXaml(Source.ToString(), false);
using (MemoryStream stream = new MemoryStream((new ASCIIEncoding()).GetBytes(xaml)))
{
TextRange text = new TextRange(flowDocument.ContentStart, flowDocument.ContentEnd);
text.Load(stream, DataFormats.Xaml);
}
return flowDocument;
}
}
更新:这是 XAML。
<RadioButton.ToolTip>
<FlowDocumentScrollViewer Document="{ext:HtmlToXaml Source={x:Static res:ExtrudeXaml.RadioButtonCreateBody_TooltipContent}}" ScrollViewer.VerticalScrollBarVisibility="Hidden" />
</RadioButton.ToolTip>
还有我的 VS 错误列表:
最佳答案
您在没有默认构造函数的情况下实现了 MarkupExtension:
所以你有两个选择:
Source
直接)HtmlToXamlExtension
部分,则更改对 Source=
的调用,然后 Wpf 将尝试在 ext:HtmlToXaml
部分之后立即找到与所有未命名字段匹配的构造函数:<RadioButton.ToolTip>
<FlowDocumentScrollViewer
Document="{ext:HtmlToXaml {x:Static res:ExtrudeXaml.RadioButtonCreateBody_TooltipContent}}"
ScrollViewer.VerticalScrollBarVisibility="Hidden" />
</RadioButton.ToolTip>
UPD: 尽管它有效,但 MSDN 说,you should have default constructor
希望能帮助到你。