Home

Windows Forms Application: Form's Caption

   

Fundamentals

 

Introduction

open System
open System.Windows.Forms

let form1 = new Form()
form1.Text <- "XYZ"

[<STAThread>]
do
   Application.Run(form1)
 

Home Copyright © 2009-2010 C# Key