[c#] How can I disable a tab inside a TabControl?

I've solved this problem like this: I've got 3 tabs and I want to keep user at the first tab if he didnt log in, so on the SelectingEvent of TabControl I wrote

if (condition) { TabControl.Deselect("2ndPage"); TabControl.Deselect("3dPage"); }