0
我必須在左右滑動時擁有一個手勢功能,但我還需要顯示列表視圖,但是儘快看到左右滑動的功能。你將如何處理這個問題?ListView上的鼠標區域qt快速
這是我的程序中的一小段代碼片段。
CustomGestureArea{
onSwipeRight:{
// do something
}
onSwipeLeft:{
// do something
}
// as soon as i put this in i loose the swipe functionality
ListView{
anchors.fill:parent
}
}
我在想製作另一個自定義手勢類,其中將包括列表視圖,我會設置模型和其他需要的信息列表視圖屬性別名爲正常工作,但在刷卡起來向下滾動列表(正如普通列表視圖功能所期望的那樣)。但我不知道如何開始。我的想法是列出這個。
GestureAreaListView{
property alias list_model:list.model
// and all other needed properties etc
onSwipeRight:{
// do my custom function
}
onSwipeLeft:{
// do my custom function
}
onSwipeUp:{
// do List view scroll up
}
onSwipeDown:{
// do List view scroll down
}
// as soon as i put this in i loose the swipe functionality
ListView{
anchors.fill:parent
}
ListView{
id: list
}
}
林幾乎可以肯定,我嘗試過這一點,它沒有工作,但通過採取以上,只是修復了所有我的問題的辦法。非常感謝你 – TheMan68