Files
EzUI/sources/Spacer.cpp

19 lines
336 B
C++
Raw Normal View History

2026-01-24 22:42:46 +08:00
#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);
}
};