- let pictureboxobjvariable=new PictureBox()
- let picbox=new PictureBox()
Syntax:
- pictureboxobjvariable.ImageLocation<-"url of an existent image"
- picbox.ImageLocation<-"C:\myimage.png"
- //use the f# standard library
- // Learn more about F# at http://fsharp.net
- open System
- //use this to enable the intellisense. Very helpful in coding your application
- open System.Drawing
- //specify the location of the Form classes
- open System.Windows.Forms
- //create a form named imageform
- let imageform=new Form(Text="Use PictureBox",StartPosition=FormStartPosition.CenterScreen,AutoScaleMode=AutoScaleMode.Font)
- //creates a horizontal scrollbar
- let hscroll=new HScrollBar(Location=new System.Drawing.Point(10, 230),Width=270)
- //creates a tooltip
- let tip=new ToolTip(IsBalloon=true,ToolTipIcon=ToolTipIcon.Info)
- //creates a picturebox named picbox
- //set the sizemode to autosize to adjust the size of the picturebox
- //depending on the size of your image
- //sets the picturebox borderstyle to fixed single
- let picbox=new PictureBox(SizeMode=PictureBoxSizeMode.AutoSize,BorderStyle=BorderStyle.FixedSingle,Top=5)
- picbox.ImageLocation<-("C:\suzzane.png")
- //adds the picturebox on your form
- imageform.Controls.Add(picbox)
- imageform.Controls.Add(hscroll)
- //adds the scrollbar to our form
- //displays a tooltip when the mouse hovers the scrollbar
- hscroll.MouseHover.Add(fun desc->tip.SetToolTip(hscroll,"Drag the scroll box to move the image"))
- //change the horizontal position of the image when the scrollbox is moved
- hscroll.Scroll.Add(fun move->picbox.Left<-Convert.ToInt32(hscroll.Value.ToString()))
- imageform.Show()
- Application.Run(imageform)
- //executes your application