Files
EzUI/sources/Spacer.cpp
2026-01-24 22:42:46 +08:00

19 lines
336 B
C++

#include "Spacer.h"
#include "Control.h"
namespace ezui {
Spacer::Spacer() {
this->SetHitTestVisible(false);
};
Spacer::~Spacer() {};
VSpacer::~VSpacer() {};
VSpacer::VSpacer(int fixedHeight) {
SetFixedHeight(fixedHeight);
}
HSpacer::~HSpacer() {};
HSpacer::HSpacer(int fixedWidth) {
SetFixedWidth(fixedWidth);
}
};