This commit is contained in:
睿 安
2026-01-25 23:46:14 +08:00
parent 2a2a3d68d8
commit 37e7d278bd
727 changed files with 193377 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
#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);
};