TaskbarButton QML Type
Manages Windows taskbar buttons. More...
| Import Statement: | import QtWinExtras 1.14 | 
| Since: | QtWinExtras 1.0 | 
Properties
- 
overlay
- overlay.accessibleDescription : string
 - overlay.iconSource : url
 
 - 
progress
- progress.maximum : int
 - progress.minimum : int
 - progress.paused : bool
 - progress.stopped : bool
 - progress.value : int
 - progress.visible : bool
 
 
Detailed Description
The TaskbarButton type enables you to set an overlay icon and to display a progress indicator on a taskbar button. An overlay icon indicates change in the state of the application. A progress indicator shows how time-consuming tasks are progressing.
Example
The following example illustrates how to use TaskbarButton in QML:
Window {
    TaskbarButton {
        overlay.iconSource: "loading.png"
        overlay.accessibleDescription: "Loading"
        progress.visible: true
        progress.value: 50
    }
} See also QWinTaskbarButton and QWinTaskbarProgress.
Property Documentation
overlay.accessibleDescription : string
The overlay icon and a description of the overlay for accessibility purposes.
progress.maximum : int
The taskbar progress indicator.
See also QWinTaskbarProgress.
    © The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
    https://doc.qt.io/qt-5.14/qml-qtwinextras-taskbarbutton.html