关于使用 SelectedTab 的问题

发布于 2024-11-06 15:34:35 字数 133 浏览 0 评论 0原文

我正在创建一个使用选项卡的应用程序。我希望能够在每个选项卡上添加、编辑和删除。我在选项卡之外有这三个按钮,因此它们可以用于每个选项卡。我正在尝试弄清楚如何使用 SelectedTab 以便我当前所在的选项卡将成为发生更改的选项卡。任何帮助表示赞赏。谢谢

I am creating an app that uses tabs. I want to be able to add, edit, and delete on each tab. I have these three buttons outside of the tabs so they can be used for each one. I am trying to figure out how to use SelectedTab so that the tab I am currently on will be the one that gets changed. Any help is appreciated. thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

绅刃 2024-11-13 15:34:35

您可以在按钮的事件处理程序中执行类似的操作:

        if (tabControl1.SelectedTab == tabPage1) 
        { 
            /* do something */ 
        }
        else if (tabControl1.SelectedTab == tabPage2)
        {
            /* do something else */
        }

You could do something like this in your buttons' event handlers:

        if (tabControl1.SelectedTab == tabPage1) 
        { 
            /* do something */ 
        }
        else if (tabControl1.SelectedTab == tabPage2)
        {
            /* do something else */
        }
薄情伤 2024-11-13 15:34:35

您可以使用 TabControl.SelectedTab 属性获取当前选定的选项卡。获得所选选项卡后,您可以在所选选项卡中进行适当的更改。

You can get the currently selected tab by using TabControl.SelectedTab property. Once you got the selected tab, you can make appropriate changes in selected tab.

梦过后 2024-11-13 15:34:35

对于删除,请将其放入删除按钮的事件处理程序中:

tabControl1.TabPages.Remove(tabControl1.SelectedTab);

对于添加,请使用以下内容:

var newTabPage = new TabPage("Tab Name");
tabControl1.TabPages.Add(myTabPage);

For delete, put this in the event handler of the delete button:

tabControl1.TabPages.Remove(tabControl1.SelectedTab);

For add, use this:

var newTabPage = new TabPage("Tab Name");
tabControl1.TabPages.Add(myTabPage);
没有心的人 2024-11-13 15:34:35

我不使用按钮,而是让用户双击数据网格和一个可以编辑等的新窗口。

Instead of using buttons, I let users double click on the datagrid and a new window where they can edit and such.

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