How can I add ultratree control to each group of UltrwinExplorarBar something like outlllook view
Regards,
Alejandro
It works great. Thanks!
Best regards,
Alejandro Castrejon
Hello Alejandro.
I am checking about the progress of this issue. Please let me know If you need any further assistance on this.
Hello Alejandro,
You could achieve this by setting the group style to 'ControlContainer' and add the desired control to the controls collection of the groups' container, like this:
private void Form1_Load(object sender, EventArgs e)
{
ultraExplorerBar1.Groups.Add();
ultraExplorerBar1.GroupSettings.Style = Infragistics.Win.UltraWinExplorerBar.GroupStyle.ControlContainer;
ultraExplorerBar1.Groups[0].Container.Controls.Add(ultraTree1);
ultraExplorerBar1.Groups[1].Container.Controls.Add(ultraTree2);
ultraExplorerBar1.Groups[2].Container.Controls.Add(ultraTree3);
}
Please do not hesitate to contact me if you need any additional assistance.