Initial commit

This commit is contained in:
2026-06-13 00:10:11 +08:00
commit 2191c1aed4
535 changed files with 184587 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
//---------------------------------------------------------------------------
#ifndef TransparentPanelUnitH
#define TransparentPanelUnitH
namespace TransparentPanelUnit
{
//---------------------------------------------------------------------------
class TPanel : public Extctrls::TPanel
{
protected:
virtual void __fastcall CreateWnd();
virtual void __fastcall CreateParams(Controls::TCreateParams &Params);
virtual void __fastcall Paint(void);
public:
__fastcall virtual TPanel(System::Classes::TComponent* AOwner);
};
}
using namespace TransparentPanelUnit;
#endif