Tag: C/C++
All the articles with the tag "C/C++".
windows 获取剪切板中的图片大小
Published: at 03:40 PMpragma once class cliboarddata { public static bool getImageSize(int &width, int &height); static unsigned int getLastError(); }; include "cliboarddata.h" include <stdint.h> include <Windows.h> typedef struct { uint...
Qt自定义MessageBox
Published: at 03:39 PM1. 继承自QDialog; 2. exec方法显示窗口; 3. done方法关闭窗口,填入参数的值就是exec的返回值。...