0
我正在c#中創建一個瀏覽器。我想根據瀏覽器地址在每個標籤頁中添加favicon。我有以下代碼返回當前地址的圖標。如何更改標籤頁在c#瀏覽器中更改時的favicon?
WebClient wc = new WebClient();
MemoryStream memorystream = new MemoryStream(wc.DownloadData("http://" + new Uri(getCurrentBrowser().Address.ToString()).Host + "/favicon.ico"));
Icon icon = new Icon(memorystream);
imageList.Images.Add(icon.ToBitmap());
tabControl.SelectedTab.ImageIndex = 0; // sets favicon in current tab
我的問題與最後一行代碼。如何爲不同的標籤設置不同的圖標?如何跟蹤哪個圖標屬於哪個標籤?