UK Consulting Links
UK Consulting Blogs
Recently I have been doing some work with FSharp.Charting and found there was no simple template for an F# WinForms application. So to remedy this situation I have posted one on the Visual Studio Gallery:
http://visualstudiogallery.msdn.microsoft.com/eba78049-a17e-4868-9ead-065da1421052
When the template is installed you get the following template added to your F# folder when creating a new F# project:
So what does this template do? The template creates a new project consisting of two F# files, MyForm.fs and Program.fs.
The MyForm.fs file provides the structure for a type derived from Form. It demonstrates the Form definition providing placeholders for adding forms to the control and hooking up both form and control events.
As you can see TODO comments define where the code needs to be modified to build up your form application.
The Program.fs file, which can be left unchanged, loads the form on the appropriate STA thread:
Hopefully you will find this template useful.
Written by Carl Nolan