QmlTextEdit带滚动条

作者: zhengtianzuo | 来源:发表于2018-11-29 20:26 被阅读0次
TextEdit {
              id: textEdit
              text: ""
              font.pointSize: 14
              height: contentHeight
              width: frame.width - vbar.width
              y: -vbar.position * textEdit.height
              wrapMode: TextEdit.Wrap
              selectByKeyboard: true
              selectByMouse: true

              MouseArea{
                  anchors.fill: parent
                  onWheel: {
                      if (wheel.angleDelta.y > 0) {
                          vbar.decrease();
                      }
                      else {
                          vbar.increase();
                      }
                  }
                  onClicked: {
                      textEdit.forceActiveFocus();
                  }
              }
          }

          ScrollBar {
              id: vbar
              hoverEnabled: true
              active: hovered || pressed
              orientation: Qt.Vertical
              size: frame.height / textEdit.height
              width: 10
              anchors.top: parent.top
              anchors.right: parent.right
              anchors.bottom: parent.bottom
          }
show.gif

需要完整代码请访问QtQuickExamples

相关文章

  • QmlTextEdit带滚动条

    需要完整代码请访问QtQuickExamples

  • QmlTextEdit接受拖放

    在TextEdit中增加DropArea 需要完整代码请访问QtQuickExamples

  • UITextView多行文本控件

    UITextView继承了UIScrollView:UIView控件,默认带滚动条 UIScrollView支持:...

  • PyQt5编程(34):在窗口中布局组—可滚动区域QScroll

    QScrollArea类实现了一个带滚动条的区域。 如果组件不符合该区域的尺寸,滚动条将自动显示。 继承层次结构如...

  • 商品展示特效

    一、水平滚动条 和 垂直滚动条 1.1 核心技术点1)求滚动条的长度? 2)拖动滚动条,求内容要走多少?滚动条的长...

  • js特效-2

    一,水平滚动条和垂直滚动条 1.1技术点 1)求滚动条的长度 2)拖动滚动条,求内容要走多少 ~滚动条的长度取决于...

  • css3的-webkit-scrollbar滚动条特性

    css3 新增的滚动条样式,美化浏览器自带的滚动条 滚动条组成 ::-webkit-scrollbar 滚动条整体...

  • 滚动条

    浏览器滚动条 滚动条的默认样式 css对应着上图的滚动条的图实 ::-webkit-scrollbar 滚动条...

  • 前端笔记(18)

    代码:滚动条: 自定义滚动条

  • js进阶第二天

    一、水平滚动条 和 垂直滚动条 1.1 核心技术点 1)求滚动条的长度? 2)拖动滚动条,求内容要走多少? 滚...

网友评论

    本文标题:QmlTextEdit带滚动条

    本文链接:https://www.haomeiwen.com/subject/aykqcqtx.html