I have to create an analog clock using winforms in f#. The clock also needs to have a label showing date and time in digital form. I have figures out the label time/date, bu
You need to add an eventhandler on your Form. Like this:
win.Paint.Add(fun pea -> pea.Graphics.DrawEllipse(Pen(Color.Red), 50, 50, 400, 400))
Now you just have to draw lines for hour, minutes and seconds.