I'm using Microsft Visual C# 2008 and am creating WPF applications. If you create a new solution and pick the WPF application template it lets you provide a single string to name the solution.
It then automatically turns that string into a base project name and a namespace using underscores instead of spaces. It also generates a class that inherits from the application class named App and a starting window with a Grid control in it named Window1.
I want to customize pretty much everything.
What's the simplest method of renaming App, Window1, and the starting namespace which won't corrupt the Solution?