Search code examples
c#.nettabcontroltabpage

Given a TabPage, find its TabControl


I have an instance of a TabPage.

I want to ask that TabPage:

"Who's your TabControl?"

That is, I wish to query a TabPage to get a reference to the TabControl that contains it.


Solution

  • Try to cast the Tabpage.Parent to a TabControl:

    TabControl parent = tabpage.Parent as TabControl;