When a link is dragged from a browser on Window 10 platform it contains the page title, but they did not make it accessible in QML:
import QtQuick 2.15 import QtQuick.Controls 2.15 ApplicationWindow { visible: true width: 640 height: 480 title: qsTr("Scroll") id: root DropArea { id: dropArea; anchors.fill: parent onEntered: { root.color = "gray"; drag.accept (Qt.LinkAction); }(more…)