i got some trouble...
My application is component-based. So i have an assembly which is the startup (WPF application project) and some other assemblies (libraries) for GUI and Rendering and so on.
Now i must open the Main Window in the startup-assembly. This window is located in the GUI library. Using some abstract classes I can access the GUI assembly and get the window. Now if i open the window using "Show()", i get only a window with black background. No controls are visible.
I created a new project. There the window works quite fine.
I just found this: WPF: How to start from a window in a different assembly and it works. But i wanted to do this manually on startup, cause i first have to initialize my core system.
Apropos, the window is black too in this way.
What´s the problem and how can i solve it?
Thanks :)