我的程式碼如下,在測試時,Button點滑鼠左鍵按鈕會變色沒問題,但是點滑鼠右鍵卻沒反應,我設了中斷點測試也不會進入中斷點,實測在網頁上滑鼠點右鍵也沒問題,有人知道是什麼問題嗎
private void BoomClick(object sender, System.Windows.Forms.MouseEventArgs e)
{
Button btn=(Button)sender;
if(e.Button== MouseButtons.Left)
{
btn.Enabled = false;
btn.BackColor = btnopencolor;
}
else if(e.Button== MouseButtons.Right)
{
btn.BackColor = btn.BackColor == btnmarkcolor ? btnnewcolor : btnmarkcolor;
}
//btnmarkcolor = Color.Blue;
}