Skip to content

Instantly share code, notes, and snippets.

@davidgrenier
Created January 5, 2012 18:53
Show Gist options
  • Save davidgrenier/1566634 to your computer and use it in GitHub Desktop.
Save davidgrenier/1566634 to your computer and use it in GitHub Desktop.
Quick form
#r "System.Windows.Forms"
open System.Windows.Forms
let form = new Form (Visible = true, TopMost = true)
let button = new Button()
form.Controls.Add button
button.Click.Add <| (fun _ -> MessageBox.Show "Hello" |> ignore)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment