I have an app created with a third-party MVVM framework. I have a bunch of Views that will be essentially the same, so I want to inject a custom class in between my Views and the original framework View base as a new base. But when I do so I get the error, "Partial declarations of must not specify different base classes."
So ideally I'd like to change the other partial to use my newly injected custom base class as its base. But I can't find it anywhere. F12 only brings up my code behind, where the error is being generated once I change the base to my new base, and the XAML file, which has no reference to the original base.
Where is the other partial class? How do I find it? Or am I maybe just going about creating my own base class for a XAML file completely wrong in the first place?