我正在使用窗口应用程序和C#..我有一张在应用程序开始时看不见的图片..当点击某个按钮时,必须显示图片框..
我使用这种编码,但图片框不可见
@H_404_4@private void save_click(object sender,EventArgs e) { pictureBox1.Visible = true; pictureBox1.Show(); //does the work here //storing and retreiving values from datadase pictureBox1.Visible = false; pictureBox1.Hide(); }