Setting the title of your XNA game window is very simple. It is just one line of code, which you can put in your main game class’s constructor:
this.Window.Title = "New Title";
You should always change the title of the window you are running in, even if you run your game in full-screen mode, because this title shows up in lots of other places as well, including the task bar.