Skip to content
Snippets Groups Projects
Select Git revision
  • 631eac244837dc71672dd6dcbd797a129e098676
  • master default protected
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.19
  • 1.0.18
  • 1.0.17
  • 1.0.16
  • 1.0.15
  • 1.0.14
  • 1.0.13
  • 1.0.12
  • 1.0.10
  • 1.0.9
  • 1.0.8
22 results

Header.js

Blame
  • Forked from KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
    Source project has a limited visibility.
    main.qml 600 B
    import QtQuick 2.11
    import QtQuick.Window 2.2
    import QtQuick.Controls 2.4
    
    Window {
        visible: true
        width: Screen.desktopAvailableWidth
        height: Screen.desktopAvailableHeight
        //flags: Qt.FramelessWindowHint
        color: "#666666"
        title: qsTr("Mini Mátrix")
    
        Flickable {
            width: Screen.desktopAvailableWidth * 0.75
            height: Screen.desktopAvailableHeight * 0.8
            contentWidth: Screen.desktopAvailableWidth * 0.75
            anchors {horizontalCenter: parent.horizontalCenter; top: parent.top; topMargin: parent.height*0.1}
            FileBrowser{
    
            }
    
        }
    
    }