I ask because if you create a new WPF project in VS 2008 the default generated code is:
public partial class Window1 : Window
{
    public Window1()
    {
        InitializeComponent();
    }
}
However, commenting out the call to InitializeComponent does not prevent the application running.
Why is this?
 
     
     
    