Files
EzUI/demo/kugou/DesktopLrcFrm.h
睿 安 37e7d278bd 备份
2026-01-25 23:46:14 +08:00

15 lines
331 B
C++

#include "global.h"
#include "lrcPanel.h"
#include "VlcPlayer.h"
class DesktopLrcFrm :public LayeredWindow {
private:
VlcPlayer* _player;
LrcPanel _lrc;
protected:
void OnPaint(PaintEventArgs& args)override;
public:
DesktopLrcFrm(VlcPlayer* player);
void LoadLrc(const UIString& lrcData);
void ChangePostion(int postion);
};