Is there any chance to add an abstract class to a wpf window?
Heres my Code so far:
My window:
 public partial class VORLAGE : Window, IWindow, IDisposable
    {
       //SOME CODE
    }
IWindow.cs:
public interface IWindow
    {
        void Open(MachineOrder machineOrder, Boolean showWindow);
        void OpenEditMode(MachineOrder machineOrder);
        void Close();
        void OpenManualOrder();
    }
There are a lot of windows based on that "VORLAGE" window and i want to add an abstract class to define some base functionality. Is there a way to achieve this?