public class WizardTabControl : TabControl { protected override void WndProc(ref Message m) { // Hide tabs by trapping the TCM_ADJUSTRECT message if (m.Msg == 0x1328 && !DesignMode) m.Result = IntPtr.Zero; else base.WndProc(ref m); } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)