随笔分类 - QT
摘要:QSvgWidget svg(this); QDomDocument doc("svg"); QDomElement el_svg = doc.createElement("svg"); doc.appendChild(el_svg); el_svg.setAttribute("xmlns", "h
阅读全文
摘要:模糊效果 实现 void Button::paintEvent(QPaintEvent *event) { QColor bg; if (isEnabled()) { if (isDown()) { bg.setRgb(78, 131, 253); } else { bg.setRgb(51, 11
阅读全文
摘要:application.h #ifndef APPLICATION_H #define APPLICATION_H #include <QApplication> #include <QMouseEvent> #include <QTouchEvent> #include <QDebug> clas
阅读全文
摘要:效果 void Clock::paintEvent(QPaintEvent *event) { /** 绘制时钟 */ qint64 msec = QDateTime::currentMSecsSinceEpoch() % 60000; QPainter painter(this); painter
阅读全文

浙公网安备 33010602011771号