Hi i have a few questions on the ultraexplorerbar....
1) I am able to create a group and then items in that group.... but how do i create items of items within a group...
eg: group -> item1 -> item1a /*this is what im wanting*/
-> item1b
group -> item2
group -> item3
2) what properties do i have to set to give the explorerebar the same look and feel as outlook 2007 or 2010? ive tried cant get this right.
TIA
Hello,
1)
This is not a supported feature. You are not able to make this kind of hierarchy with this control. If you want, I could log this as a new product idea in our internal systems.
2)
You could set the control style to 'OutlookNavigationPane' like this:
ultraExplorerBar1.Style = Infragistics.Win.UltraWinExplorerBar.UltraExplorerBarStyle.OutlookNavigationPane;
Another thing you could do is to use 'AppStylist' and create the exact style you are after, then apply it through:
Infragistics.Win.AppStyling.StyleManager.Load("filename");
Please feel free to let me know if a question about our toolset comes up on your mind.
I wanted to know if you were able to solve your issue based on these suggestions or you still need help. Please let me know.
For item 1, you could use a ControlContainer group and put your own control in it that supports the hierarchy of data you want. Maybe an UltraWinTree or UltraWinGrid or your own custom control.