在Windows下QWidget里可使用GDI绘图
#include<windows.h>
HDC hdc;
hdc = widget->getDC();//widget为QWidget类型
for ( int i=0;i<100;i++ )
{
SetPixel( hdc,100+i,100+i,0xFF666666 );
}
#include<windows.h>
HDC hdc;
hdc = widget->getDC();//widget为QWidget类型
for ( int i=0;i<100;i++ )
{
SetPixel( hdc,100+i,100+i,0xFF666666 );
}