tags:

views:

24

answers:

1

This is probably a very simple fix.

  1. I clicked the form in the Solution Explorer.
  2. Pressed F2 to rename it. Renamed it "MyForm.xaml". Pressed enter.
  3. Tried launching the application but I get this error:

Cannot locate resource 'window1.xaml'.

+5  A: 

In App.xaml, there will be a StartupUri="Window1.xaml". Change this to StartupUri="MyForm.xaml".

JustABill