我有一個托盤應用程序,我想打開ContextMenuStrip,如果我點擊托盤標誌。這是我的代碼:左鍵單擊不可用的notifyicon與contextmenustrip
private void notifyIcon1_MouseClick(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
timeBroMenu.Show(Cursor.Position);
}
}
雙擊工作很容易。
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
timeBroMenu.Show(Cursor.Position);
}
有沒有什麼辦法讓左鍵點擊工作?
你能否提供一些關於NotifyIcon和ContextMenuStrip如何初始化的信息? – Lyra