在c#中,当tabPage从TabControl中移除时会引发什么事件

本文关键字:什么 事件 TabControl tabPage | 更新日期: 2023-09-27 18:04:06

在c# WinForms中,当tabPage从TabControl中删除时,我可以处理什么事件,所以我可以隐藏窗口,如果TabControl中没有tabPage ?

在c#中,当tabPage从TabControl中移除时会引发什么事件

可以使用SelectedIndexChanged事件。然后使用((TabControl)sender).TabCount来确定控件上是否留下了选项卡。如果计数为零,则隐藏控件。

无论您如何完成抓取事件,您都需要对选项卡计数进行检查以隐藏控件

Try ControlRemoved:

http://msdn.microsoft.com/en-us/library/system.windows.forms.control.controlremoved.aspx