This commit is contained in:
睿 安
2026-01-25 23:46:14 +08:00
parent 2a2a3d68d8
commit 37e7d278bd
727 changed files with 193377 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
#pragma once
#include "Label.h"
namespace ezui {
class UI_EXPORT Button :
public Label
{
private:
void Init();
public:
Button(Object* ownerObject = NULL);
virtual ~Button();
};
};