Trying my hand at a hello world application, getting this error "The name 'InitalizeComponent' does not exists in the current context". This appears in the constructor of all of my views. Per This Page I decided to implement my own InitalizeComponenet :
private void InitializeComponent() {
this.LoadFromXaml(typeof(AboutPage));
}
It will now build... but the application dies (without exception) shortly after the debugger connects. Please advise.