c# TabControl隐藏选项卡但不隐藏选项卡中的控件
我在C#中创建了一个Tab控件,里面有多个选项卡,我想把所有选项卡都隐藏起来,然后在后台用代码实现切换选项卡。现在的问题是选项卡用:tabPage1.Parent=nul...
我在C#中创建了一个Tab控件,里面有多个选项卡,我想把所有选项卡都隐藏起来,然后在后台用代码实现切换选项卡。
现在的问题是选项卡用:tabPage1.Parent = null;tabPage2.Parent = null;实现了隐藏,但是选项卡里面的按钮控件也被隐藏了!
请问有什么方法解决! 展开
现在的问题是选项卡用:tabPage1.Parent = null;tabPage2.Parent = null;实现了隐藏,但是选项卡里面的按钮控件也被隐藏了!
请问有什么方法解决! 展开
1个回答
展开全部
winform: 给Panel增加点方法
class MultiPagePanel : Panel
{
private int _currentPageIndex;
public int CurrentPageIndex
{
get { return _currentPageIndex; }
set
{
if (value >= 0 && value < Controls.Count)
{
Controls[value].BringToFront();
_currentPageIndex = value;
}
}
}
MultiPagePanel p;
// MyTabPage is a Control derived class that represents one page on your form.
MyTabPage page = new MyTabPage();
p.AddPage(page);
p.CurrentPageIndex = 0;
public void AddPage(Control page)
{
Controls.Add(page);
page.Dock = DockStyle.Fill;
}
}
wpf:
Style s = new Style();
s.Setters.Add(new Setter(UIElement.VisibilityProperty, Visibility.Collapsed));
tabControl.ItemContainerStyle = s;
class MultiPagePanel : Panel
{
private int _currentPageIndex;
public int CurrentPageIndex
{
get { return _currentPageIndex; }
set
{
if (value >= 0 && value < Controls.Count)
{
Controls[value].BringToFront();
_currentPageIndex = value;
}
}
}
MultiPagePanel p;
// MyTabPage is a Control derived class that represents one page on your form.
MyTabPage page = new MyTabPage();
p.AddPage(page);
p.CurrentPageIndex = 0;
public void AddPage(Control page)
{
Controls.Add(page);
page.Dock = DockStyle.Fill;
}
}
wpf:
Style s = new Style();
s.Setters.Add(new Setter(UIElement.VisibilityProperty, Visibility.Collapsed));
tabControl.ItemContainerStyle = s;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询