This commit is contained in:
zhuzihcu 2023-05-19 09:19:52 +08:00
parent d5ca61c0f6
commit e67e7e4d3b
2 changed files with 6 additions and 1 deletions

View File

@ -12,6 +12,10 @@ FluWindow {
property bool appBarVisible: true
default property alias content: container.data
Component.onCompleted: {
console.debug(FramelessUtils.frameBorderVisible)
}
FluAppBar {
id: title_bar
title: window.title

View File

@ -12,7 +12,7 @@
FRAMELESSHELPER_USE_NAMESPACE
int main(int argc, char *argv[])
int main(int argc, char *argv[])
{
//将样式设置为Basic不然会导致组件显示异常
qputenv("QT_QUICK_CONTROLS_STYLE","Basic");
@ -21,6 +21,7 @@ int main(int argc, char *argv[])
QGuiApplication::setOrganizationDomain("https://zhuzichu520.github.io");
QGuiApplication::setApplicationName("FluentUI");
QGuiApplication app(argc, argv);
FramelessConfig::instance()->set(Global::Option::ForceHideWindowFrameBorder);
AppInfo* appInfo = new AppInfo();
IPC ipc(0);
QString activeWindowEvent = "activeWindow";