need canvas like container with resizable rectangles
Solved
QML and Qt Quick
-
I am new to qt and I need a canvas like element for my qml app. I need to have a object(possibly derived from rectangle) that can be pulled from its sides by dragging and resized. I want it to be object because I want to assign other properties. Qml canvas has paint signal for drawing so not ideal for my purpose. There can be up to a 1000 rectangles and this is a desktop app. Thanks
-
Hi
maybe this help with the resize part ?
https://stackoverflow.com/questions/29087710/how-to-make-a-resizable-rectangle-in-qml -
@mrjj Yes it helped, thanks.