Hi,
I'm trying to set the size of the button icons (pin, close, etc.) in the caption of the panes through the UltraDockManager by setting the ImageSizeCaption property.
When the CaptionStyle is CaptionStyle.Windows it works well:
dockManager.ImageSizeCaption = new Size(60, 60);dockManager.ScaleImages = ScaleImage.Always;dockManager.CaptionStyle = CaptionStyle.Windows;
But, when the CaptionStyle is CaptionStyle.Office2003 the size of the icons remains small:
dockManager.ImageSizeCaption = new Size(60, 60);dockManager.ScaleImages = ScaleImage.Always;dockManager.CaptionStyle = CaptionStyle.Office2003;
My question is how can I enlarge the icons when the CaptionStyle is Office2003?
Thanks,
Gabor
Here are the screenshots for the different styles.CaptionStyle.Windows:
CaptionStyle.Office2003: