The form size is stretched to the screen resolution. The following elements are on the form:
private System.Windows.Forms.PictureBox pictureBox6;
private System.Windows.Forms.PictureBox pictureBox7;
private System.Windows.Forms.PictureBox pictureBox8;
private System.Windows.Forms.PictureBox pictureBox1;
private System.Windows.Forms.PictureBox pictureBox9;
private System.Windows.Forms.PictureBox pictureBox3;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.PictureBox pictureBox2;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.PictureBox pictureBox4;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Panel panel1;
When you open a form, it immediately loads the images to the panel from the folder. Example:
pictureBox2.Load("bgr/1.png");
Images are loaded and displayed, but they are drawn for a long time, that is, you can see the rendering of the image itself in parts.
Question: how can I solve the problem of slow drawing images or make it invisible to the user?