I am using a windowed application and C #. I have an image that is invisible at the beginning of the application .. when any button is pressed, it is necessary to display the image window.
I use this encoding, but the window with the image is not visible
private void save_click(object sender, EventArgs e) { pictureBox1.Visible = true; pictureBox1.Show();
PS .. in the image window I show gif .. so that the user will know that some work continues in the background. It takes a long time to complete the function ...
source share