I am trying to create a custom (CustTreeView) control by inheriting from a Telerik control (RadTreeView) by doing the following:
public class CustTreeView : RadTreeView
but not all methods appear to be inherited. For example, I can do:
RadTreeView r = new RadTreeView();
r.LoadContentFile("Sample.xml");
but not:
CustTreeView r = new CustTreeView ();
r.LoadContentFile("Sample.xml");
so LoadContentFile doesn't appear to be in CustTreeView! Any explanation?
Here is the RadTreeView LoadContentFile method signature:
public void LoadContentFile(string path)