Hi all, I have a svg file and was wondering how to output it to my form. Can i use the graphicsview widget and then use:
to display it to the screen.Code:
ui->graphicsview-> // something here
Thanks for your time and trouble
Printable View
Hi all, I have a svg file and was wondering how to output it to my form. Can i use the graphicsview widget and then use:
to display it to the screen.Code:
ui->graphicsview-> // something here
Thanks for your time and trouble
I guess it would look something like:
Code:
ui->setupUi(this); ui->graphicsView->setScene(scene); scene->addItem(item);