mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-30 07:03:46 +08:00
fix bug #356
This commit is contained in:
parent
2242ffc367
commit
5dd3320f66
@ -39,6 +39,7 @@ Window {
|
|||||||
property bool showMaximize: true
|
property bool showMaximize: true
|
||||||
property bool showStayTop: true
|
property bool showStayTop: true
|
||||||
property bool useSystemAppBar
|
property bool useSystemAppBar
|
||||||
|
property bool autoMaximize: false
|
||||||
property var closeListener: function(event){
|
property var closeListener: function(event){
|
||||||
if(closeDestory){
|
if(closeDestory){
|
||||||
destoryOnClose()
|
destoryOnClose()
|
||||||
@ -64,7 +65,11 @@ Window {
|
|||||||
d.changedStayTop()
|
d.changedStayTop()
|
||||||
if(useSystemAppBar){
|
if(useSystemAppBar){
|
||||||
window.moveWindowToDesktopCenter()
|
window.moveWindowToDesktopCenter()
|
||||||
window.visible = true
|
if(window.autoMaximize){
|
||||||
|
window.showMaximized()
|
||||||
|
}else{
|
||||||
|
window.show()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Component.onDestruction: {
|
Component.onDestruction: {
|
||||||
@ -224,7 +229,11 @@ Window {
|
|||||||
if (blurBehindWindowEnabled)
|
if (blurBehindWindowEnabled)
|
||||||
window.background = undefined
|
window.background = undefined
|
||||||
}
|
}
|
||||||
window.show()
|
if(window.autoMaximize){
|
||||||
|
window.showMaximized()
|
||||||
|
}else{
|
||||||
|
window.show()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
WindowLifecycle{
|
WindowLifecycle{
|
||||||
|
@ -38,6 +38,7 @@ Window {
|
|||||||
property bool showMaximize: true
|
property bool showMaximize: true
|
||||||
property bool showStayTop: true
|
property bool showStayTop: true
|
||||||
property bool useSystemAppBar
|
property bool useSystemAppBar
|
||||||
|
property bool autoMaximize: false
|
||||||
property var closeListener: function(event){
|
property var closeListener: function(event){
|
||||||
if(closeDestory){
|
if(closeDestory){
|
||||||
destoryOnClose()
|
destoryOnClose()
|
||||||
@ -63,7 +64,11 @@ Window {
|
|||||||
d.changedStayTop()
|
d.changedStayTop()
|
||||||
if(useSystemAppBar){
|
if(useSystemAppBar){
|
||||||
window.moveWindowToDesktopCenter()
|
window.moveWindowToDesktopCenter()
|
||||||
window.visible = true
|
if(window.autoMaximize){
|
||||||
|
window.showMaximized()
|
||||||
|
}else{
|
||||||
|
window.show()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Component.onDestruction: {
|
Component.onDestruction: {
|
||||||
@ -223,7 +228,11 @@ Window {
|
|||||||
if (blurBehindWindowEnabled)
|
if (blurBehindWindowEnabled)
|
||||||
window.background = undefined
|
window.background = undefined
|
||||||
}
|
}
|
||||||
window.show()
|
if(window.autoMaximize){
|
||||||
|
window.showMaximized()
|
||||||
|
}else{
|
||||||
|
window.show()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
WindowLifecycle{
|
WindowLifecycle{
|
||||||
|
Loading…
Reference in New Issue
Block a user