Advertisement
Guest User

Untitled

a guest
Feb 8th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.38 KB | None | 0 0
  1. import QtQuick 2.7
  2. import QtQuick.Controls 2.0
  3. import QtQuick.Templates 2.0 as T
  4. import QtQuick.Layouts 1.0
  5.  
  6. ApplicationWindow {
  7.     visible: true
  8.     width: 640
  9.     height: 480
  10.     title: qsTr("Hello World")
  11.  
  12.     ComboBox {
  13.         id: comboBox
  14.         clip: true
  15.         leftPadding: 4.5
  16.         contentItem: T.TextField {
  17.             padding: 0
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement