Software should not contain a Window title of "Window1"!
One of my pet peeves is that many WPF projects I see have a window Title of "Window1" like this:
Please pick a title that is descriptive of your application.
In WPF, you can change your title by:
- Select the Window object in the designer, find "title" in the property grid, and give it a good value; or
- Open Window1.xaml and replace the value of the Title property on the Window element at the root.