I\'m having trouble with naming my Window which is inherited from its Base Window, when I try to give a name to my Window I get following error.
The t
Your base window apparently, as the error states, needs a public default contructor (one without arguments), it also may not be abstract because an instance of it needs to be created.