I'm trying to make a simple web Browser, but i'm getting errors where if the URL changes then the address bar does.

Code:
	private void WebBrowser_Navigated(object sender, System.EventArgs  e)
	{
		ProgressBar1.Visible = true;
		URL.Text = WebBrowser.LocationURL;
	}
When i run the app it doesn't update still, because of the WebBrowser_Navigated line. There must be something wrong with it. Does anybody know the solution.