Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. import clr
  2. clr.AddReference('System.Windows.Forms')
  3. clr.AddReference('System.Drawing')
  4. from System.Windows.Forms import Application, Button, Form
  5. from System.Drawing import Point
  6.  
  7. form = Form()
  8. form.Text = "Привет Dynamo!"
  9. button = Button(Text="Button Text")
  10. form.Controls.Add(button)
  11.  
  12. Application.Run(form)
  13. form.Show()
  14.  
  15. OUT=x
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement