Files
PulsarK-main/Pulsar.Server/Controls/NoButtonTabControl.cs
T
i2p 773d05f8f1
Pulsar .NET 9.0 Windows Release / build (push) Waiting to run
Mirror to Codeberg and Gitea / mirror (push) Waiting to run
initial commit
2026-08-27 10:57:58 -06:00

23 lines
603 B
C#

using System;
using System.Windows.Forms;
namespace Pulsar.Server.Controls
{
public class NoButtonTabControl : TabControl
{
protected override void WndProc(ref Message m)
{
// Message 0x1328 is related to tab header drawing, we suppress it here.
if (m.Msg == 0x1328 && !DesignMode)
{
// Suppress the header (tab) drawing
m.Result = (IntPtr)1;
}
else
{
// Process other messages as usual
base.WndProc(ref m);
}
}
}
}