The UltraTreeNode object has the property, ListObject which "Returns the object corresponding to this row from the IList that the control is bound to.", how does one get the same information from a selected tab in a UltraTabStripControl?
Sam
Any chance someone might have a though regarding this Q?
There is a ListObject property on the UltraTab object, but it is internal so you would have to use reflection to access it:
UltraTab tab = this.ultraTabStripControl1.Tabs[0];PropertyInfo propInfo = typeof(UltraTab).GetProperty("ListObject", BindingFlags.Instance | BindingFlags.NonPublic);object listObject = propInfo.GetValue(tab, null);
-Matt