Display XML

  • Thread starter Thread starter James Lennon
  • Start date Start date
J

James Lennon

Is there are windows form that can be bound to an XML document to display XML
in a user friendly manner.
 
Sorry, I meant to say:

Is there a windows forms control that can be bound to an XML document to
display XML in a user friendly manner.
 
James,

Not one that was meant to display XML. However, you can embed a
WebBrowser control in your form and call the Navigate method, pointing to
your XML file (if you have one) or by changing the properties on the
HtmlDocument exposed by the control (DocumentString, DocumentStream, I
believe).

The webbrowser control will then render the XML the way IE would (since
the WebBrowser control is basically IE).
 
Is there are windows form that can be bound to an XML document to display XML
in a user friendly manner.

Windows forms? No specifically no - but, using WPF it is quite
possible to bind a control(s) to an xml document's contents.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top