alltolove 发表于 2017-3-17 08:25:39

QT动画制作(二十六)

效果:

知识点1:获取所在路径
知识点2:ListView拖动效果
新建Rect.qml文件:
import QtQuick 2.0
import Qt.labs.folderlistmodel 2.1//想查看文件名必须加这行
ListView{
      width: 750; height: 100
      FolderListModel {//自动显示程序所在文件夹的文件名
          id: folderModel
      }

      Component {
          id: fileDelegate
          Text {
            font.pixelSize: 20
            color:"blue"
            text: {
                  fileName
                  filePath
            }
            font.family: "仿宋"
            font.bold: true
          }
      }

      model: folderModel
      delegate: fileDelegate
}

main.qml文件:
import QtQuick 2.5
import QtQuick.Window 2.2

Window {
    visible: true
    width: 750
    height: 100
    title: qsTr("Hello World")

    MainForm {}
       }

MainForm.ui.qml文件:
import QtQuick 2.5
Rect{}

Preview: 明天介绍物体圆周运动

不二如是 发表于 2017-3-17 11:08:52

这是啥。。。。。。。。。。。{:10_250:}
页: [1]
查看完整版本: QT动画制作(二十六)