using System; using System.Collections.Generic; using System.Linq; using System.Text; using Xceed.Wpf.DataGrid; using System.Xml; namespace Xceed.Wpf.Documentation { public class XmlDataGridItemProperty: DataGridItemProperty { public XmlDataGridItemProperty() :base() { this.PropertyDescriptor = new XmlPropertyDescriptor( this ); } } }