初版-带一个进度条
This commit is contained in:
19
sources/Spacer.cpp
Normal file
19
sources/Spacer.cpp
Normal file
@@ -0,0 +1,19 @@
|
||||
#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);
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user