25 lines
552 B
C#
25 lines
552 B
C#
#region Usings
|
|
using System;
|
|
using System.Windows.Forms;
|
|
#endregion
|
|
|
|
#region Tab Control without Header
|
|
//https://stackoverflow.com/questions/23247941/c-sharp-how-to-remove-tabcontrol-border
|
|
|
|
public partial class TabControlWithoutHeader : TabControl
|
|
{
|
|
public TabControlWithoutHeader()
|
|
{
|
|
if (!DesignMode) Multiline = true;
|
|
}
|
|
|
|
protected override void WndProc(ref Message m)
|
|
{
|
|
if (m.Msg == 0x1328 && !DesignMode)
|
|
m.Result = new IntPtr(1);
|
|
else
|
|
base.WndProc(ref m);
|
|
}
|
|
}
|
|
#endregion
|