本文介绍了选择tabControl的特殊选项卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨!

我有一个tabControl,我想要,该程序在用户单击按钮时显示第二个选项卡,所以我该怎么做?

:Doostl

Hi !

I have a tabControl and i want, the program shows second tab when user clicked on a button so how can i do it?

:Doostl

推荐答案


tabControl.SelectedItem = tabPage;




or

tabControl.SelectedIndex = n; // where "n" is the index of the desired tab



这篇关于选择tabControl的特殊选项卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 00:24