2023-08-24 15:50:37 +08:00
|
|
|
|
import QtQuick 2.15
|
|
|
|
|
import QtQuick.Controls 2.15
|
|
|
|
|
import QtQuick.Layouts 1.15
|
|
|
|
|
import FluentUI 1.0
|
2023-08-26 17:20:30 +08:00
|
|
|
|
import "../component"
|
2023-04-13 18:10:38 +08:00
|
|
|
|
|
2023-10-08 19:48:32 +08:00
|
|
|
|
FluWindow {
|
2023-04-13 18:10:38 +08:00
|
|
|
|
|
|
|
|
|
id:window
|
2023-04-22 18:08:11 +08:00
|
|
|
|
title:"SingleInstance"
|
2023-04-13 18:10:38 +08:00
|
|
|
|
width: 500
|
|
|
|
|
height: 600
|
2023-05-17 18:15:15 +08:00
|
|
|
|
fixSize: true
|
2023-07-18 18:24:06 +08:00
|
|
|
|
launchMode: FluWindowType.SingleInstance
|
2023-04-13 18:10:38 +08:00
|
|
|
|
|
|
|
|
|
FluTextBox{
|
|
|
|
|
anchors{
|
|
|
|
|
top:parent.top
|
|
|
|
|
topMargin:60
|
|
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FluText{
|
|
|
|
|
wrapMode: Text.WrapAnywhere
|
|
|
|
|
anchors{
|
|
|
|
|
left: parent.left
|
|
|
|
|
right: parent.right
|
|
|
|
|
leftMargin: 20
|
|
|
|
|
rightMargin: 20
|
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
|
}
|
|
|
|
|
text:"我是一个SingleInstance模式的窗口,如果我存在,我会销毁之前的窗口,并创建一个新窗口"
|
|
|
|
|
}
|
|
|
|
|
}
|