C#用TabControl控件怎么使某个TabPage禁用
2个回答
2016-10-18
展开全部
好像不能禁用单个TabPage。不过你可以这样操作。
在控件的TabPages里面给每个TabPage定义一个Name。
找到TabControl控件的事件(SelectedIndexChanged)。根据当前选中的TabPage来判断操控它。
在控件的TabPages里面给每个TabPage定义一个Name。
找到TabControl控件的事件(SelectedIndexChanged)。根据当前选中的TabPage来判断操控它。
展开全部
public Form1()
{
InitializeComponent();
tbControl.Selecting += new TabControlCancelEventHandler(tbControl_Selecting);
}
int i = 0;
bool f1 = true;
bool f2 = true;
bool f3 = true;
private void tbControl_Selecting(object sender, TabControlCancelEventArgs e)
{
if (e.TabPageIndex == 0) e.Cancel = f1;
if (e.TabPageIndex == 1) e.Cancel = f2;
if (e.TabPageIndex == 2) e.Cancel = f3;
}
private void button2_Click(object sender, EventArgs e)
{
i = 0;
i++;
if (i > 0)
{
f1 = true;
f2 = false;
f3 = true;
}
this.tbControl.SelectedIndex = 1;
}
private void button5_Click(object sender, EventArgs e)
{
i = 0;
i++;
if (i > 0)
{
f1 = true;
f2 = true;
f3 = false;
}
this.tbControl.SelectedIndex = 2;
}
private void button4_Click(object sender, EventArgs e)
{
i = 0;
i++;
if(i>0)
{
f1 = false;
f2 = true;
f3 = true;
}
this.tbControl.SelectedIndex = 0;
}
private void button8_Click(object sender, EventArgs e)
{
i = 0;i++;
if(i>0)
{
f1 = true;
f2 = false;
f3 = true;
}
this.tbControl.SelectedIndex = 1;
}
{
InitializeComponent();
tbControl.Selecting += new TabControlCancelEventHandler(tbControl_Selecting);
}
int i = 0;
bool f1 = true;
bool f2 = true;
bool f3 = true;
private void tbControl_Selecting(object sender, TabControlCancelEventArgs e)
{
if (e.TabPageIndex == 0) e.Cancel = f1;
if (e.TabPageIndex == 1) e.Cancel = f2;
if (e.TabPageIndex == 2) e.Cancel = f3;
}
private void button2_Click(object sender, EventArgs e)
{
i = 0;
i++;
if (i > 0)
{
f1 = true;
f2 = false;
f3 = true;
}
this.tbControl.SelectedIndex = 1;
}
private void button5_Click(object sender, EventArgs e)
{
i = 0;
i++;
if (i > 0)
{
f1 = true;
f2 = true;
f3 = false;
}
this.tbControl.SelectedIndex = 2;
}
private void button4_Click(object sender, EventArgs e)
{
i = 0;
i++;
if(i>0)
{
f1 = false;
f2 = true;
f3 = true;
}
this.tbControl.SelectedIndex = 0;
}
private void button8_Click(object sender, EventArgs e)
{
i = 0;i++;
if(i>0)
{
f1 = true;
f2 = false;
f3 = true;
}
this.tbControl.SelectedIndex = 1;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询