1
0
Fork 0
TweetDuck/Controls/FlowLayoutPanelNoHScroll.cs

15 lines
397 B
C#

using System.Windows.Forms;
using TweetDuck.Utils;
namespace TweetDuck.Controls {
sealed class FlowLayoutPanelNoHScroll : FlowLayoutPanel {
protected override void WndProc(ref Message m) {
if (m.Msg == 0x85) { // WM_NCPAINT
NativeMethods.ShowScrollBar(Handle, NativeMethods.SB_HORZ, false); // basically fuck the horizontal scrollbar very much
}
base.WndProc(ref m);
}
}
}