0

I want to implement a control with a specifiable DataSource property and it would be great if I could inherit and the type of the DataSource implements some sort of Hierarchical interface with properties and methods ensured.

Does .NET supply such an interface? Googling revealed nothing.

Matt
  • 25,943
  • 66
  • 198
  • 303

2 Answers2

1

There is a HierarchicalDataTemplate, see this SO question.

Community
  • 1
  • 1
H H
  • 263,252
  • 30
  • 330
  • 514
0

Possibly you are after the IBindingList interface.

Craig
  • 36,306
  • 34
  • 114
  • 197