I would like to use the wpf editor for creating interfaces for an application that just accept a byte array (a bitmap). In this situation, I obviusly won’t use any ContentControl, so I tried by inheriting DependencyObject, however I can’t “render” anything in wpf editor. Are there any possibility to effectively render something that is not a ContentControl?
Even a workaround inheriting ContentControl (but when I instanciate) the class obviusly I should instanciate (in code) something different that doesn’t create a real window.
I searched all over the web and I definitely think it’s not possible except with great hacks where you force the editor to use a class different from what it uses in running mode.