In my WPF app, all I have in my code-behind is the following:
public partial class MainWindow
{    
    public MainWindow()
    {
         InitializeComponent();
    }    
}
Can I completely remove the code-behind file from my project or does it have to stay there? My background is in web app development and I'm kind of relating this to a code-behind file with an empty Page_Load() method, which I would typically remove.
 
     
     
     
     
     
    