This commit is contained in:
nastys
2019-07-30 13:48:28 +02:00
parent 17b6c02aee
commit d1349cfebe
157 changed files with 0 additions and 0 deletions
@@ -0,0 +1,19 @@
#pragma once
using namespace System::Windows::Forms;
using namespace System::Drawing;
// ported from https://stackoverflow.com/a/7785745
// original code by user LarsTech https://stackoverflow.com/users/719186/larstech
ref class TabPadding : public NativeWindow
{
public:
TabPadding(TabControl^ tc);
private:
TabControl^ tabControl;
void tabControl_Selected(Object^ sender, TabControlEventArgs^ e);
protected:
virtual void WndProc(Message %m) override;
};