Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi everyone,
Is there a simple way to change the mouse cursor to a custom shape, within QML?
I have only found how to set the cursor shape to one of the predefined Qt::CursorShape shapes.
Thanks
Hi @levelxxl, AFAIK you will need to change it from C++ side.
QGuiApplication app(argc, argv); app.setOverrideCursor(QCursor(QPixmap("mycursor.png")));
Thanks, I was afraid of that.