I believe you would need to create a child QWidget
of the QWinWidget
to be able to position it. However, I have never used the mfc-migration tool kit.
Adam W
2010-05-26 19:37:29
I believe you would need to create a child QWidget
of the QWinWidget
to be able to position it. However, I have never used the mfc-migration tool kit.
You may need to firstly show the widget, then move:
pWidget->show();
pWidget->move( 50, 50 );