// // // // // $Revision$ // using System; using System.Windows.Forms; using ICSharpCode.XmlEditor; namespace XmlEditor.Tests.Utils { /// /// Test utility class that has the XmlTreeViewControl as a base class /// and gives access to protected methods. /// public class DerivedXmlTreeViewControl : XmlTreeViewControl { public DerivedXmlTreeViewControl() { } public void CallMouseDown(MouseEventArgs e) { base.OnMouseDown(e); } } }