制作winform切换标签页

发布于 2024-07-10 17:49:30 字数 308 浏览 7 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伴梦长久 2024-07-17 17:49:30

你尝试过这个吗?

tabControl1.SelectedTab = logTab;

Did you try this?

tabControl1.SelectedTab = logTab;
菊凝晚露 2024-07-17 17:49:30

您可以设置选项卡控件的 SelectedIndex 属性或 SelectedTab 属性来切换选项卡。

You can set either the SelectedIndex property or the SelectedTab property of the tab control to switch tabs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文