根据单击的按钮更改图像

时间:2014-04-12 11:02:59

标签: c# wpf

我有这个界面,我想根据点击哪个按钮改变中间图像。为了做到这一点我需要什么?

http://i62.tinypic.com/kbx9z.png

1 个答案:

答案 0 :(得分:0)

我假设您有一个图像列表。然后,您可以将按钮的Tag属性指定给图像的索引。然后将每个按钮的click事件分配给sinle事件,例如

private void buttonClicked(object sender,EventArgs e) {     this.pictureBox1.Image = this.imageList [(int)((Button)sender).Tag]; }