16 lines
304 B
QML
16 lines
304 B
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import FluentUI.Controls
|
|
import FluentUI.impl
|
|
|
|
QtObject {
|
|
id: control
|
|
property var starter
|
|
property int displayMode: NavigationViewType.Auto
|
|
property int windowEffect: WindowEffectType.Normal
|
|
|
|
signal sendMessage(var message)
|
|
}
|