制作winform切换标签页
我正在使用 Visual Studio 2008 在 C# 中制作 winform。
目前,我有一个选项卡控件,包含 2 个选项卡。 在第一个中,有一个按钮。 当我单击它时,我必须进入第二个选项卡。
问题是,我不知道怎么办。 我尝试过调试,研究各种属性并摆弄它们,但我发现没有任何帮助。
这里有人知道如何实现这一点吗?
额外信息:我的变量名为 tabControl1、textTab 和 logTab。
我在 textTab 中,单击那里的按钮,我想转到 logTab。 基本上就是这样。
I'm making a winform in C# using Visual Studio 2008.
Currently, I have a tabcontrol, containing 2 tabs.
In the first the, there is a button. When I click it, I must be taken to the second tab.
Problem is, I don't know how. I've tried debugging, looking into al kinds of Properties and messing around with them, but I found nothing that helps.
Does anybody here know how to pull this off?
Extra info: my variables are named tabControl1, textTab and logTab.
I'm in textTab, click on a button there and I want to be taken to logTab. That's it basically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你尝试过这个吗?
Did you try this?
您可以设置选项卡控件的 SelectedIndex 属性或 SelectedTab 属性来切换选项卡。
You can set either the SelectedIndex property or the SelectedTab property of the tab control to switch tabs.