Advertisement
Guest User

Problems with winforms on manjaro i3

a guest
Nov 28th, 2016
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
F# 0.24 KB | None | 0 0
  1. // Create a window
  2. let win = new System.Windows.Forms.Form ()
  3. // Start the event loop
  4. win.BackColor <- System.Drawing.Color.White
  5. win.Size <- System.Drawing.Size (600, 200)
  6. win.Text <- sprintf "Hello"
  7. System.Windows.Forms.Application.Run win
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement