First of all, I am a real newbie to programming in Visual Studio. That being said, I have created a small program that pops up an Internet Explorer window; I now want to replace the Internet Explorer icon in the top-left corner with the project's icon.
Currently, I am opening the window in C#, using the ShDocVw
object:
static void Main(string[] args)
{
SHDocVw.InternetExplorer IE = new SHDocVw.InternetExplorer
{
AddressBar = false,
MenuBar = false,
StatusBar = false,
ToolBar = 0,
Visible = true,
Height = 768
};
IE.Navigate2("http://someURL/page.aspx");
}
What I want to replace is the IE icon in the top-left corner (see included picture). The icon is in my project as a resource, and appears on the .exe.
Is there a way to change the browser icon here?
After checking the SHDocVw InternetExplorer Interface and test it on my side, it seems that there is no way to change the IE window icon on the left via the SHDocVw library.
From your description, I suggest you could try to create a WPF or Windows Forms application, then use the WebView or WebView2 control to display the web content. In this scenario, you could add the custom icon for the WPF or Windows Forms window. screenshot like this:
About how to set the window icon, please refer to the following methods:
To the WPF application, try to use the following code (set the Icon property):
More detail information, please check Setting the application icon in WPF
To the Windows Form application.
Right click the Form, in the Properties , it contains the Icon property, click the
...
button to select icon.