QtWidgetsExamples icon indicating copy to clipboard operation
QtWidgetsExamples copied to clipboard

QtWidgets相关的技术分享

Results 1 QtWidgetsExamples issues
Sort by recently updated
recently updated
newest added

/*! *@file QtGrayImage.cpp *@brief 图片转灰度 *@version 1.0 *@section LICENSE Copyright (C) 2003-2103 CamelSoft Corporation *@author zhengtianzuo */ #include "QtGrayImage.h" #include "ui_QtGrayImage.h" QtGrayImage::QtGrayImage(QWidget *parent) : QDialog(parent), ui(new Ui::QtGrayImage) { ui->setupUi(this); connect(ui->pushButton,...