Hi,
I have several similar user controls which display listviews of respectively different data entities. In the code-behind files of these controls there is quite a bit of common business logic.
How can these common methods be combined in a single "super-class" as I would do in a normal non-wpf-case (reusing any xaml parts isnt necessary)? Creating a super-control (with just a skeleton xaml file) which the controls inherit from gives a parser error of:
Partial declarations of DERIVED-CLASS must not specify different base classes
in the derived user controls.
Thank you a lot.