Activating a new Form at run-time (Visual F#)

To activate a new form at run-time, simply use the Show and Hide methods of the form. The following steps demonstrate a simple example:

1. Click Start>All Programs>Microsoft Visual Studio 2008>Microsoft Visual Studio 2008.

2. Click File>New>Project>Select Visual F# in the project types>Select F# application in the Visual Studio installed templates category.

3. Click the Project menu>Add reference>Click the .Net tab>Locate then double-click System.Windows.Forms.
Do step 3 again and this time, select System.Drawing from the .Net tab.

4. Enter the following code after the line “// Learn more about F# at http://fsharp.net “:
  1. //use the F# standard library  
  2. open System  
  3. //use the drawing class  
  4. open System.Drawing   
  5. //Specifies the memory location of the form class  
  6. open System.Windows.Forms   
  7. //create a font object  
  8. let ffont=new Font("Arial",12.0f,FontStyle.Bold, GraphicsUnit.Point)  
  9. //creates a form named “firstform”  
  10. let firstform=new Form(Text="Display First Form",StartPosition=FormStartPosition.CenterScreen,AutoScaleMode=AutoScaleMode.Font,ClientSize=new System.Drawing.Size(200,200),FormBorderStyle=FormBorderStyle.FixedSingle)  
  11. //creates a label,sets its caption to “This is the first form”  
  12. let fformlabel=new Label(Text="This is the first form",AutoSize=true)  
  13. //make a button,sets its caption to Second Form  
  14. let nxtbutton=new Button(Text="Second Form", Location=new System.Drawing.Point(100, 200),AutoSize=true)  
  15. //creates another button, set its text to exit  
  16. let fexitbutton=new Button(Text="Exit", Location=new System.Drawing.Point(200, 200),AutoSize=true)  
  17. //adds the controls we made to the first form  
  18. firstform.Controls.Add(fformlabel)  
  19. //applies font format to our label  
  20. fformlabel.Font<-ffont  
  21. firstform.Controls.Add(nxtbutton)  
  22. firstform.Controls.Add(fexitbutton)  
  23. //when the “Second Form” button of the first form is clicked  
  24. nxtbutton.Click.Add(fun nxtform->  
  25. //hides the first form  
  26. firstform.Hide()  
  27. //create a new form named secondform  
  28. let secondform=new Form(Text="Second Form", StartPosition=FormStartPosition.CenterScreen,AutoScaleMode=AutoScaleMode.Font,ClientSize=new System.Drawing.Size(200,200),FormBorderStyle=FormBorderStyle.FixedSingle)  
  29. //create a label and sets its caption to “This is the second form”  
  30. let sformlabel=new Label(Text="This is the second form",AutoSize=true)  
  31. //creates a button and sets its text to “First Form”  
  32. let prevbutton=new Button(Text="First Form", Location=new System.Drawing.Point(100, 200))  
  33. //adds a button, set its text to “Exit”  
  34. let sexitbutton=new Button(Text="Exit", Location=new System.Drawing.Point(200, 200))  
  35. //show the second form  
  36. secondform.Show()  
  37. //add the controls we made on the second form  
  38. secondform.Controls.Add(sformlabel)  
  39. //applies font format to our label  
  40. sformlabel.Font<-ffont  
  41. secondform.Controls.Add(prevbutton)  
  42. secondform.Controls.Add(sexitbutton)  
  43. //when the “First Form” button of the second form is clicked  
  44. prevbutton.Click.Add(fun prevform->  
  45. //show the first form  
  46. firstform.Show()  
  47. //hide the second form  
  48. secondform.Hide())  
  49. //when the exit button of the second form is clicked  
  50. sexitbutton.Click.Add(fun quit->  
  51. //close the first form  
  52. firstform.Close()  
  53. //close the second form  
  54. secondform.Close()))  
  55. //when the exit button of the first form is clicked  
  56. //close the first form  
  57. fexitbutton.Click.Add(fun quit->firstform.Close())                       
  58. firstform.Show()  
  59. //executes our application  
  60. Application.Run(firstform)  
Here is our sample code again and this time comments omitted.
  1. open System  
  2. open System.Drawing    
  3. open System.Windows.Forms  
  4. let ffont=new Font("Arial",12.0f,FontStyle.Bold, , GraphicsUnit.Point)   
  5. let firstform=new Form(Text="First Form", StartPosition=FormStartPosition.CenterScreen,AutoScaleMode=AutoScaleMode.Font,ClientSize=new System.Drawing.Size(200,200),FormBorderStyle=FormBorderStyle.FixedSingle)  
  6. let fformlabel=new Label(Text="This is the first form",AutoSize=true)  
  7. let nxtbutton=new Button(Text="Second Form", Location=new System.Drawing.Point(100, 200),AutoSize=true)  
  8. let fexitbutton=new Button(Text="Exit", Location=new System.Drawing.Point(200, 200),AutoSize=true)  
  9. firstform.Controls.Add(fformlabel)  
  10. fformlabel.Font<-ffont  
  11. firstform.Controls.Add(nxtbutton)  
  12. firstform.Controls.Add(fexitbutton)  
  13.   
  14. nxtbutton.Click.Add(fun nxtform->  
  15. firstform.Hide()  
  16. let secondform=new Form(Text="Second Form", StartPosition=FormStartPosition.CenterScreen,AutoScaleMode=AutoScaleMode.Font,ClientSize=new System.Drawing.Size(200,200),FormBorderStyle=FormBorderStyle.FixedSingle)  
  17. let sformlabel=new Label(Text="This is the second form",AutoSize=true)  
  18. let prevbutton=new Button(Text="First Form", Location=new System.Drawing.Point(100, 200))  
  19. let sexitbutton=new Button(Text="Exit", Location=new System.Drawing.Point(200, 200))  
  20. secondform.Show()  
  21. secondform.Controls.Add(sformlabel)  
  22. sformlabel.Font<-ffont  
  23. secondform.Controls.Add(prevbutton)  
  24. secondform.Controls.Add(sexitbutton)  
  25. prevbutton.Click.Add(fun prevform->  
  26. firstform.Show()  
  27. secondform.Hide())  
  28. sexitbutton.Click.Add(fun quit->  
  29. firstform.Close()  
  30. secondform.Close()))    
  31.   
  32. fexitbutton.Click.Add(fun quit->firstform.Close())                       
  33. firstform.Show()  
  34. Application.Run(firstform)  

5. Click the run icon to execute your application. You should now see an output similar to the following screen shot:

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.