Advertisement
Dmitry_Dronov

Form

Apr 2nd, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. import clr
  2. clr.AddReference("System.Windows.Forms")
  3. from System.Windows.Forms import Application, Form, Label
  4. form = Form("Hello World Form")
  5. label = Label("Hello World!")
  6. form.Controls.Add(label)
  7. Application.Run(form)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement