pro:初步添加属性窗口。

This commit is contained in:
2025-11-11 22:57:38 +08:00
parent 7c4b76d844
commit 067f4b6ce6
6 changed files with 234 additions and 0 deletions

34
Gui/Form/FileInfoForm.h Normal file
View File

@@ -0,0 +1,34 @@
#ifndef FILEINFOFORM_H
#define FILEINFOFORM_H
#include <QDialog>
namespace Ui {
class FileInfo;
}
class FileInfo : public QDialog
{
Q_OBJECT
public:
explicit FileInfo(QWidget* parent = nullptr);
~FileInfo();
int exec() override;
public:
QString baseName_;
QString dirName_;
QString fileType_;
QString fileTime_;
QString fileSize_;
private:
void InitControl();
private:
Ui::FileInfo* ui;
};
#endif // FILEINFOFORM_H