What data visualization control is used to present the results in LINQPad? Or is there any alternative for showing hierarchical data in .NET?
Share
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.
LINQPad uses a WebBrowser control to display a dynamically generated HTML page. You can even view its source code by right clicking on the results window. So it’s basically a wrapper around Internet Explorer. As far as the generation of the HTML is concerned it uses a custom built XhtmlFormatter to visit the object graph and emit XHTML based on XDocument.