1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import QtQuick
- import QtQuick.Templates as T
- import QtQuick.Controls.Universal
- T.Label {
- id: control
- opacity: enabled ? 1.0 : 0.2
- color: control.Universal.foreground
- linkColor: Universal.accent
- }
|