123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import QtQuick
- import QtQuick.Templates as T
- import QtQuick.Controls.impl
- import QtQuick.Controls.Fusion
- import QtQuick.Controls.Fusion.impl
- T.SelectionRectangle {
- id: control
- topLeftHandle: Item {
- width: 20
- height: 20
- visible: SelectionRectangle.control.active
-
-
-
- }
- bottomRightHandle: Item {
- width: 20
- height: 20
- visible: SelectionRectangle.control.active
-
-
-
- }
- }
|