F# 프로그램으로 버튼의 마우스 이벤트를 감지하여 버튼의 색깔을 변경하는 윈도우폼 애플리케이션을 작성해 보았다. 실행시키고 버튼을 클릭할 때마다 버튼의 색깔이 바뀐다. // Filename: ClickForm5.fs // // Compile: fsc --codepage:949 ClickForm5.fs // Execute: ClickForm5 // Import useful .NET namespaces open System open System.Drawing open System.Windows.Forms // Create the form and a label objects let frm = new Form(Text = "버튼 이벤트 핸들러 테스트", Height = 200) let btn = new Butt..