13 lines
313 B
C++
13 lines
313 B
C++
#ifndef TJDUI_LABEL_VIEW_H
|
|
#define TJDUI_LABEL_VIEW_H
|
|
#include "components/ui_label_ext.h"
|
|
|
|
namespace TJD {
|
|
class TjdUiLabelView : public OHOS::UILabelExt {
|
|
public:
|
|
TjdUiLabelView();
|
|
virtual ~TjdUiLabelView();
|
|
void SetPosition(int16_t x, int16_t y, int16_t width, int16_t height) override;
|
|
};
|
|
}
|
|
#endif |