![]() |
TaskPanel and Groups |
Post Reply
|
| Author | |
SteveStraley
Groupie
Joined: 25 November 2005 Status: Offline Points: 46 |
Post Options
Thanks(0)
Quote Reply
Topic: TaskPanel and GroupsPosted: 28 November 2005 at 12:39pm |
|
Hi,
Is it possible to have SUB-groups within a TaskPanel group? Thanks, Steve |
|
![]() |
|
Oleg
Senior Member
Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
Quote Reply
Posted: 28 November 2005 at 1:47pm |
|
no.
|
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
![]() |
|
SteveStraley
Groupie
Joined: 25 November 2005 Status: Offline Points: 46 |
Post Options
Thanks(0)
Quote Reply
Posted: 28 November 2005 at 4:37pm |
|
Oleg,
Thank you. Any plans for this? Steve |
|
![]() |
|
Oleg
Senior Member
Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
Quote Reply
Posted: 29 November 2005 at 1:02am |
|
Hmm.. You can try to insert one task panel to another using xtpTaskItemTypeControl: Set Group = TaskPanel1.Groups.Add(1, "Group1") |
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
![]() |
|
SteveStraley
Groupie
Joined: 25 November 2005 Status: Offline Points: 46 |
Post Options
Thanks(0)
Quote Reply
Posted: 29 November 2005 at 12:40pm |
|
Oleg -
Thank you... that is EXACTLY what I was looking for. Much obliged! Steve |
|
![]() |
|
Oleg
Senior Member
Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
Quote Reply
Posted: 02 December 2005 at 2:06pm |
|
Hi,
For your C# 2005 code will looks like:
private void Form1_Load(object sender, EventArgs e){ XtremeTaskPanel. TaskPanelGroup Group = axTaskPanel2.Groups.Add(1, "Group1");Group.Items.Add(1, "Item1", XtremeTaskPanel.XTPTaskPanelItemType.xtpTaskItemTypeLink, 1);Group.Expandable = false;Group = axTaskPanel1.Groups.Add(1, "Group1");Group.Items.Add(1, "Item1", XtremeTaskPanel.XTPTaskPanelItemType.xtpTaskItemTypeLink, 1);Group.Items.Add(2, "Item2", XtremeTaskPanel.XTPTaskPanelItemType.xtpTaskItemTypeLink, 1);XtremeTaskPanel. TaskPanelGroupItem Item = Group.Items.Add(2, "Item3", XtremeTaskPanel.XTPTaskPanelItemType.xtpTaskItemTypeControl, 1);Item.Handle = axTaskPanel2.hWnd; axTaskPanel2.Parent = axTaskPanel1; } |
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
![]() |
|
Post Reply
|
|
|
Tweet
|
| Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |