FluentUI/Gallery/res/qml/window/SearchNearWindow.qml
yxdy ff15075c79
Some checks are pending
Gallery App Build / macOS (push) Waiting to run
Gallery App Build / Windows (push) Waiting to run
Gallery App Build / Ubuntu (push) Waiting to run
修改样式
2025-03-07 16:23:09 +08:00

24 lines
544 B
QML

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import FluentUI.Controls
import FluentUI.impl
import Gallery
import "../component"
MyFramelessWindow {
property var argument
id: window
showAppBar: false
title: "搜索周边"
fitsAppBarWindows: true
appBar: Item{}
width: 600
height: 400
fixSize: true
visible: true
launchMode: WindowType.SingleInstance
windowEffect: Global.windowEffect
initialItem: R.resolvedUrl("res/qml/screen/SearchNearScreen.qml")
}