Given a TabPage, find its TabControl

1.9k views Asked by At

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.

1

There are 1 answers

1
Patrick Hofman On BEST ANSWER

Try to cast the Tabpage.Parent to a TabControl:

TabControl parent = tabpage.Parent as TabControl;