I am working with Silverlight 4.
I am supposed to display a XSLT inside a Silverlight page as is, read-only.
Which control is best suited for this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.