Hi Erik,
I just checked the documentation page about on how to customize the tab icon and it seems not to be not right: See screenshot: http://screencast.com/t/TMl6KESEH
Page: http://docs.telerik.com/fiddler/extend-fiddler/addicon
Please correct me if I'm right about this script:
public void OnLoad()
{
oPage = new TabPage("Timeline");
Image newImage = Image.FromFile(@"C:\Users\.........");
FiddlerApplication.UI.imglSessionIcons.Images.Add("imgKey", newImage);
oPage.ImageIndex = FiddlerApplication.UI.imglSessionIcons.Images.IndexOfKey("imgKey");
oView = new TimelineView();
oPage.Controls.Add(oView);
oView.Dock = DockStyle.Fill;
FiddlerApplication.UI.tabsViews.TabPages.Add(oPage);
}
Thanks,
Jhayar
I just checked the documentation page about on how to customize the tab icon and it seems not to be not right: See screenshot: http://screencast.com/t/TMl6KESEH
Page: http://docs.telerik.com/fiddler/extend-fiddler/addicon
Please correct me if I'm right about this script:
public void OnLoad()
{
oPage = new TabPage("Timeline");
Image newImage = Image.FromFile(@"C:\Users\.........");
FiddlerApplication.UI.imglSessionIcons.Images.Add("imgKey", newImage);
oPage.ImageIndex = FiddlerApplication.UI.imglSessionIcons.Images.IndexOfKey("imgKey");
oView = new TimelineView();
oPage.Controls.Add(oView);
oView.Dock = DockStyle.Fill;
FiddlerApplication.UI.tabsViews.TabPages.Add(oPage);
}
Thanks,
Jhayar