So I'm trying to get SFML to work with Visual C++ 2010, and it will open the window now, but it looks like this when it does.

The window also doesn't respond when you try and move it or close it. Here's my code:
////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
#include <SFML/Graphics.hpp>
int main()
{
// Create the main window
sf::RenderWindow App(sf::VideoMode(800, 600, 32), "SFML Window");
while (true)
{
App.Clear();
App.Display();
}
return EXIT_SUCCESS;
}