2023-08-24 15:50:37 +08:00
|
|
|
import QtQuick
|
|
|
|
import QtQuick.Controls
|
|
|
|
import QtQuick.Layouts
|
|
|
|
import FluentUI
|
2024-01-25 17:26:50 +08:00
|
|
|
import "../component"
|
2023-08-24 15:50:37 +08:00
|
|
|
|
2023-10-08 18:19:08 +08:00
|
|
|
FluWindow {
|
2023-08-24 15:50:37 +08:00
|
|
|
|
2024-03-09 15:35:48 +08:00
|
|
|
id: window
|
|
|
|
title: qsTr("SingleInstance")
|
2023-08-24 15:50:37 +08:00
|
|
|
width: 500
|
|
|
|
height: 600
|
|
|
|
fixSize: true
|
|
|
|
launchMode: FluWindowType.SingleInstance
|
|
|
|
|
|
|
|
FluTextBox{
|
|
|
|
anchors{
|
|
|
|
top:parent.top
|
|
|
|
topMargin:60
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FluText{
|
2024-03-09 15:35:48 +08:00
|
|
|
wrapMode: Text.WordWrap
|
2023-08-24 15:50:37 +08:00
|
|
|
anchors{
|
|
|
|
left: parent.left
|
|
|
|
right: parent.right
|
|
|
|
leftMargin: 20
|
|
|
|
rightMargin: 20
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
}
|
2024-03-09 15:35:48 +08:00
|
|
|
text: qsTr("I'm a SingleInstance window, and if I exist, I'll destroy the previous window and create a new one")
|
2023-08-24 15:50:37 +08:00
|
|
|
}
|
|
|
|
}
|