I have open browsers on my application which load in data using the default web browser.
//Set the function and display the browsers we're using (per screen)
browsers[index].Width = screens[index].Bounds.Width;
browsers[index].Height = screens[index].Bounds.Height;
browsers[index].Location = new System.Drawing.Point(screens[index].Bounds.X, screens[index].Bounds.Y);
browsers[index].Navigate(new Uri(lines[index]));
browsers[index].Show();
Now my problem is that when you click a link on the page, it leaves my application and openes a new browser completely. Any way of getting out of this?
lines contains an array of URL's and browsers is an array of web pages to load up on different screens.