我正在使用WinForms。在我的WinForms應用程序中,我有一個contextMenuStrip 如果你右鍵單擊圖片框,contextMenuStrip將出現一個你可以點擊的項目列表。如何將「sizeMEToolStripMenuItem_Click」方法稱爲另一種方法。如果聲明與ContextMenuStrip
例如:
private void sizeMEToolStripMenuItem_Click(object sender, EventArgs e)
{
if(sizeMEToolStripMenuItem.isclicked) //.isClicked is somthing i made up
{
e.Graphics.DrawImage(pictureBox1.Image, movingPoint); <- This draws and shows image
}
else
{
//e.Graphics.DrawImage(pictureBox1.Image, movingPoint); <- Hide this image
}
}
private void pictureBox1_Paint_1(object sender, PaintEventArgs e)
{
//e.Graphics.DrawImage(pictureBox1.Image, movingPoint);
}
編輯上下文條,雙擊想要發生點擊事件的菜單項,然後編寫點擊處理程序。 –
當你點擊該項目時,顯然你點擊了它,你需要什麼?你需要'Checked'屬性嗎? –
我重寫了我的代碼,使其更清晰。當用戶點擊事件處理程序時,我將如何使用(DrawImage(pictureBox1.Image,movingPoint) – taji01