I'm new to WPF and would like to clarify a question that I think most people have but can not clarify right, which is the visual inheritance of windows.
Imagine that all my registration screens should have the same appearance and the same buttons (Save, Cancel, etc.). NO Windows Forms. for example, just create a base window with the cited components and then, just make the other windows inherit from that base window and ready! If the window that inherits from the base window does not have a specific button, I just add it in the form normally.
Well, now let's go to WPF. I can not do this and I do not know if there is a possibility, because what I was able to do is to create a User Control, but I found it very stuck because if I make a user control of a screen (as I mentioned earlier), in the window that I add it , I can not change it with new buttons for that window that is inheriting ....
Has anyone had any experience like this?