关于使用 SelectedTab 的问题
我正在创建一个使用选项卡的应用程序。我希望能够在每个选项卡上添加、编辑和删除。我在选项卡之外有这三个按钮,因此它们可以用于每个选项卡。我正在尝试弄清楚如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以在按钮的事件处理程序中执行类似的操作:
You could do something like this in your buttons' event handlers:
您可以使用
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.对于删除,请将其放入删除按钮的事件处理程序中:
对于添加,请使用以下内容:
For delete, put this in the event handler of the delete button:
For add, use this:
我不使用按钮,而是让用户双击数据网格和一个可以编辑等的新窗口。
Instead of using buttons, I let users double click on the datagrid and a new window where they can edit and such.