Re: How to put same widget under multiple tabs in TabLayoutPanel?

2010-04-15 Thread enjoylife
thanks, this sound like an idea. On Apr 10, 8:07 am, Chad wrote: > One option would be to add a selection handler to the TabPanel and > when the tab changes remove the controls from the display and attach > them to the new tabs content. > > On Apr 8, 11:49 pm, enjoylife wrote: > > > I have a Tab

Re: How to put same widget under multiple tabs in TabLayoutPanel?

2010-04-10 Thread Chad
One option would be to add a selection handler to the TabPanel and when the tab changes remove the controls from the display and attach them to the new tabs content. On Apr 8, 11:49 pm, enjoylife wrote: > I have a TabLayoutPanel with 3 tabs, each tab contain a table.  I need > to place a control

Re: How to put same widget under multiple tabs in TabLayoutPanel?

2010-04-09 Thread euzuro
I think the way to do what you want to do is to use a separate TabBar[1] and DeckPanel[2] I haven't done it myself, but I know that the TabLayoutPanel (and TabPanel) are both composed of these two objects. The TabBar is the actual set of tabs, and the DeckPanel is the set of widgets that get switc

How to put same widget under multiple tabs in TabLayoutPanel?

2010-04-08 Thread enjoylife
I have a TabLayoutPanel with 3 tabs, each tab contain a table. I need to place a control panel above and below tables. All 3 tables will share same control panel. (panel is for selecting all rows in a table) I am having problem getting this to work. Here is code for tablayoutpanel with one t