当前位置:   article > 正文

qml 常用_qml anchors按钮锚定父正中

qml anchors按钮锚定父正中

一、 QML 控件如何在其父控件居中。

  1. 1)anchors.centerIn: parent
  2. 2)anchors.horizontalCenter: parent.horizontalCenter//水平居中
  3. 3)anchors.verticalCenter: parent.verticalCenter //垂直居中


二、 透明色设置

 color: "transparent"

三、反撤销功能快捷键  shift+ctrl+z

四、qml 二次确认框

  1. button_del.onClicked: {//删除
  2. id_mesDialog.open()
  3. }
  4. MessageDialog {
  5. id:id_mesDialog
  6. title: "提示"
  7. text: "是否继续删除?"
  8. buttons: MessageDialog.Ok | MessageDialog.Cancel
  9. onAccepted : {
  10. //………………具体的处理
  11. }
  12. }

用的是 import QtQuick.Dialogs, MessageDialog{},可直接去帮助里查找,这个效果图如下

 

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号