xsl:template match doesn't find matches

后端 未结 3 759
没有蜡笔的小新
没有蜡笔的小新 2021-02-20 08:05

I\'m trying to convert some Xaml to HTML using the .NET XslCompiledTransform and am running into difficulties getting the xslt to match Xaml tags. For instance with this Xaml i

3条回答
  •  心在旅途
    2021-02-20 08:10

    Just try changing

    "xsl:template match='/'"

    tag in your xsl file with

    "xsl:template match='*'"

    This should give you the desired output.

提交回复
热议问题