Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Int32 width = 140;
Int32 height = 70;
pictureBox1.Location = new Point(0,0);
pictureBox1.Size = new Size(width,height); //picture box
this.Size = new Size(width,height); //form
Int32 width = 140;
Int32 height = 70;
pictureBox1.Location = new Point(0,0);
pictureBox1.Size = new Size(width,height); //picture box
this.ClientSize = new Size(width,height); //form
Dim width As Int32 = 140
Dim height As Int32 = 70
PictureBox1.Location = New Point(0, 0)
PictureBox1.Size = New Size(Width, Height) 'picture box
ClientSize = New Size(Width, Height) 'form