當我在我的項目中按下一個picturebox時,我聯繫方法card_pressed。 通過這個代碼C#發件人問題
this.picturebox.Click += new System.EventHandler(this.card_Pressed)
我有幾個pictureboxes所有鏈接到這個方法,現在我想檢查已經通過該方法發送者接觸,並比較它在PictureBox的名稱壓制。
if(sender == picturebox1)
{
//something
}
我得到這個工作時,即時通訊使用按鈕,但不是當我使用圖片盒時,爲什麼?
謝謝!
工作的呢? :'if(object.Equals(sender,picturebox1))' – Omer 2011-06-11 14:46:21
try ** if((picturebox)sender == picturebox1)** – 2011-06-11 14:49:18
我們需要**更多信息**。您發佈的代碼*工作*,錯誤必須在其他地方。 – 2011-06-11 14:54:46