G
Guest
I can check if a control is inherited from TabControl like this:
if (c.GetType().ToString() == "System.Windows.Forms.TabControl")
But what if c is inherited from TabControl? How to check that?
Thank you
if (c.GetType().ToString() == "System.Windows.Forms.TabControl")
But what if c is inherited from TabControl? How to check that?
Thank you