繁体   English   中英

从QML组合框传播点击

[英]Propagate Click from QML Combobox

我有一个Listmodel,在单击它们时代表被选中/突出显示。 但是,当我单击作为代表一部分的组合框时,不会选择该代表。

是否存在诸如broadcastComposedEvents之类的东西,可以将单击传播到委托的MouseArea?

当我单击包含组合框的代理时,最好的选择方式是什么?

这是截图 在此处输入图片说明

这是示例代码

import QtQuick 2.4
import QtQuick.Controls 1.3
import QtQuick.Window 2.2
import QtQuick.Dialogs 1.2

ApplicationWindow {
     title: qsTr("Hello World")
     width: 640
     height: 480
     visible: true

    ListModel {
         id: contactsModel
         ListElement {
             name: "Bill Smith"
         }
         ListElement {
             name: "John Brown"
         }
        ListElement {
             name: "Sam Wise"
         }
     }

    ListModel {
         id: roleModel
         ListElement {
             text: "Employee"
         }
         ListElement {
             text: "Manager"
         }
         ListElement {
             text: "Big Boss"
         }
     }

     ListView{
         id: contactsView
         anchors.left: parent.left
         anchors.top: parent.top
         width: parent.width
         height: parent.height
         orientation: Qt.Vertical
         spacing: 10
         model: contactsModel
         delegate: contactsDelegate
     }

     Component{
         id: contactsDelegate
         Rectangle{
             width: 200
             height: 50
             color: ListView.isCurrentItem ? "#003366" : "#585858"
             border.color: "gray"
             border.width: 1

             MouseArea{
                 anchors.fill: parent
                 onClicked: {
                     contactsView.currentIndex = index;
                 }
             }

             Column{
                 Text {
                     color: "white"
                     text: name
                 }
                 ComboBox{
                     currentIndex: 0
                     model: roleModel
                 }
             }
         }
     }
 }
ComboBox{
    currentIndex: 0
    model: roleModel
    onPressedChanged: if (pressed) contactsView.currentIndex = index
}

它并没有完全传播,但却可以解决问题。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM