Reputation: 1413
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.
Upvotes: 1
Views: 1948
Reputation: 156918
Try to cast the Tabpage.Parent
to a TabControl
:
TabControl parent = tabpage.Parent as TabControl;
Upvotes: 2