mirror of https://github.com/emgucv/emgucv.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
852 B
35 lines
852 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Data;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.Xml;
|
|
|
|
namespace Emgu.UI
|
|
{
|
|
/// <summary>
|
|
/// Display an xml document in a tree view dialog
|
|
/// </summary>
|
|
public partial class XmlTreeViewDialog : Form
|
|
{
|
|
/// <summary>
|
|
/// Create the tree view dialog
|
|
/// </summary>
|
|
public XmlTreeViewDialog()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create the tree view dialog to display the <paramref name="doc"/>
|
|
/// </summary>
|
|
/// <param name="doc">The document to be displayed</param>
|
|
public XmlTreeViewDialog(XmlDocument doc)
|
|
: this()
|
|
{
|
|
xmlTreeView1.XmlDocument = doc;
|
|
}
|
|
}
|
|
}
|