【发布时间】:2008-10-07 15:17:56
【问题描述】:
在 Ajax 工具包中,您可以使用 Tab Container 并将 TabPanels 添加到其中。
我有一些控件希望能够在所有选项卡中使用,并根据需要使用其他控件来定制选项卡。
我的问题是如何在多个选项卡上重复使用一个面板? 基本上我追求这样的事情
<TabContainer>
<tabPanel1>
<contentTemplate>
<pnl1></pnl1>
//other controls here
</contentTemplate>
</tabPanel1>
<tabPanel2>
<contentTemplate>
<pnl1></pnl1>
//other controls here
</contentTemplate>
<tabPanel2>
</tabContainer>
<pnl1>
//some controls here
</pnl1>
【问题讨论】: