1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- import QtQuick
- import QtQuick.Templates as T
- import QtQuick.Shapes
- T.SelectionRectangle {
- id: control
- topLeftHandle: Item {
- width: 20
- height: 20
- visible: SelectionRectangle.control.active
-
-
-
- }
- bottomRightHandle: Item {
- width: 20
- height: 20
- visible: SelectionRectangle.control.active
-
-
-
- }
- }
|