Displaying XSLT content in Silverlight
I am working with Silverlight开发者_如何学Go 4.
I am supposed to display a XSLT inside a Silverlight page as is, read-only.
Which control is best suited for this?
XSLT files are for transforming one file format to another (generally used for taking XML and creating other XML files or HTML pages or human-readable plain-text files out of the input XML). They are not visual documents - what you actually need is to display the result of an XSLT transformation and the control you need for that will depend on what type of file the output of the transformation is (e.g. it could be an HTML file or a text file).
If you can post an example XSLT file you need to use, we might be able to offer more detailed help.
精彩评论