forked from qt-creator/qt-creator
		
	
		
			
	
	
		
			14 lines
		
	
	
		
			188 B
		
	
	
	
		
			QML
		
	
	
	
	
	
		
		
			
		
	
	
			14 lines
		
	
	
		
			188 B
		
	
	
	
		
			QML
		
	
	
	
	
	
| 
								 | 
							
								import QtQuick 2.8
							 | 
						||
| 
								 | 
							
								import QtQuick.Window 2.2
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								Window {
							 | 
						||
| 
								 | 
							
								    visible: true
							 | 
						||
| 
								 | 
							
								    width: 640
							 | 
						||
| 
								 | 
							
								    height: 480
							 | 
						||
| 
								 | 
							
								    title: qsTr("Hello World")
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    MainForm {
							 | 
						||
| 
								 | 
							
								        anchors.fill: parent
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |