标签:
1 private void Form1_Load(object sender, EventArgs e) 2 { 3 radioButton2.Checked = true; 4 } 5 private void radioButton_CheckedChanged(object sender, EventArgs e) 6 { 7 if (radioButton2.Checked == true) 8 { 9 pictureBox1.ImageLocation = @"C:\111.jpg"; 10 } 11 else 12 { 13 pictureBox1.ImageLocation = @"C:\000.jpg"; 14 } 15 16 }
插入图片最简单的代码pictureBox1.ImageLocation = @"C:\111.jpg";
不同情况插入不同图片
标签:
原文地址:http://www.cnblogs.com/xzh1993/p/4189657.html