mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import W
 | |
| import Windows
 | |
| 
 | |
| 
 | |
| w = W.ModalDialog((100, 100))
 | |
| 
 | |
| w.ed = W.EditText((10, 10, 80, 50))
 | |
| w.ok = W.Button((10, 70, 80, 16), "Ok", w.close)
 | |
| w.setdefaultbutton(w.ok)
 | |
| w.open()
 | 
