Created
January 5, 2012 18:53
-
-
Save davidgrenier/1566634 to your computer and use it in GitHub Desktop.
Quick form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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