20 lines
447 B
QML
20 lines
447 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
import FluentUI.Controls
|
|
import FluentUI.impl
|
|
import Gallery
|
|
|
|
FramelessWindow {
|
|
property var argument
|
|
id: window
|
|
title: "搜索周边"
|
|
width: 600
|
|
height: 400
|
|
fixSize: true
|
|
visible: true
|
|
launchMode: WindowType.SingleInstance
|
|
windowEffect: Global.windowEffect
|
|
initialItem: R.resolvedUrl("res/qml/screen/SearchNearScreen.qml")
|
|
}
|