Hi,
I have a ultraExplorer bar with style set to Outlook Navigation Pane.
When there is a single group box in the explorer pane, I want the ultraExplorer to display only the top header and not the bottom one.
For eg. Currently with a single group box it shows as below :
I want it to be displayed as:
If possible, I would like to get rid of the splitter as well, currently showing in the bottom.
An example of this behaviour would be Microsoft Outlook's task pane. If u knock of all the groups, it still shows the last group shown and that too without the bottom header.
Please advise how this can be done programmatically. I tweaked around a bit and got rid of the Navigation Pane overflow area.
But when I say
this.ultraExplorerBar1.Groups[0].Settings.HeaderVisible = Infragistics.Win.DefaultableBoolean.False;
this.ultraExplorerBar1.Groups[0].Selected = true;
it looses the top header bar as shown:
any help would be appreciated
I'm not certain, but I think the NavigationOverflowButtonAreaVisible property makes it possible to hide that area.
Brian,
It doesnt work .
any other idea?
Roshan
NavigationOverflowButtonAreaVisible = false will drop the bottom chunk. NavigationMaxGroupHeaders = 0 will get rid of the groups showing up at the bottom.
The splitter has no property I know of to turn off its visibility and you will have to remove it using a CreationFilter.
Doing all of the above will yield the results you are after.