日期:2014-05-17 浏览次数:21137 次
//当前选中的页号
int iLastIndex = tabControl1.SelectedIndex;
//下次选中页好
int iNextIndex = 0;
//
if (tabControl1.TabPages.Count < 1)
{
return;
}
//判断当前页是否是最后一页
if (iLastIndex + 1 < tabControl1.TabPages.Count)
{
iNextIndex = tabControl1.TabPages.Count - 1;
}
else
{
//最后一条
iNextIndex = tabControl1.TabPages.Count - 2;
}
//删除当前页
tabControl1.TabPages.RemoveAt(iLastIndex);
//设定选中页