20200303 QML TableView (Qt 5.1版本) 自定義內部拖動條的樣式 custom scrollbar style

前言:

  基於QML TableView(Qt 5.1)版本,內部滑動條樣式修改

style: TableViewStyle {
    frame: Rectangle { color: "transparent" } //邊框
    incrementControl: Rectangle { color: "transparent" } //滑塊
    decrementControl: Rectangle { color: "transparent" }  //滑塊
    handle: Rectangle {   //中間的滑動塊
        implicitWidth: 6 
        Rectangle { 
            radius: 12 
            color: "#d1d3d5" 
            anchors.fill: parent 
        } 
    }
    //背景
    scrollBarBackground: 
        Rectangle { 
            color: "transparent" 
            implicitWidth: 6 
        } 
}

演示:

 

 

 

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章