Posted 19 years ago
by puyopuy

Hi Support,
Is it possible to add icon and background image for Tool Window’s title bar?
Thanks
Jeff
Is it possible to add icon and background image for Tool Window’s title bar?
Thanks
Jeff
VisualStudio2005DockRenderer renderer = new VisualStudio2005DockRenderer();
renderer.DockContainerTitleBarActiveBackgroundFill = new ImageBackgroundFill(Image.FromFile(@"C:\bg.gif"));
renderer.DockContainerTitleBarInactiveBackgroundFill = new ImageBackgroundFill(Image.FromFile(@"C:\bg.gif"));
dockManager1.DockRenderer = renderer;
Please log in to a validated account to post comments.