drag and drop1 Qt QLabel로 Drag & Drop Widget 만들기 목차 0. DragAndDropTest 생성 이것은 기본이나 패스... 1. QDragDropLabel 추가 아래와 같이 QDragDropLabel을 만든다. qdragdroplabel.h #ifndef QDRAGDROPLABEL_H #define QDRAGDROPLABEL_H #include #include #include #include class QDragDropLabel : public QLabel { Q_OBJECT public: QDragDropLabel(QWidget *parent=nullptr): QLabel(parent){ QFont font = parent->font(); font.setPixelSize(12); setFont(font); } void dragEnterEvent(QDra.. 2022. 10. 11. 이전 1 다음