Hello,
I use Office2007Blue style and would like to have separators between panels like in Outlook 2007 or Word 2007 but can't find the way how to acheive it. I also tried with AppStyle application but it doesn't work. thanks for your help.
Thomas
I would like to have separators between panels like on the image bellow but can't find the way to do it from the designer or AppStyle application :
Thanks for your help,
The separators are only drawn with the ViewStyle is standard, and it's not the StatusBar itself that draws these, but rather the OS theme that renders a given StatusBarItem. To get these separators, you could either use a DrawFilter to draw the lines at the right edge of the panel, or you could create an image and use the ImageBackgroundStretchMargins to position those lines on the right and have the remainder stretched across the panel.
-Matt
Thanks for your response. I finally used DrawFilter to achieve this.
Regards,
A better trick is to insert additional panels where separators are desired and set their properties as follows:
BorderStyle = InsetSoftMinWidth = 2SizingMode = Fixed (this is by default)Width = 2
It really does the trick.
-BE