1

これを Powershell に変換したいのですが、方法がよくわかりません。重要な部分は、trayMenu アイテムのハンドラーを作成することです。

NotifyIcon trayIcon;
ContextMenuStrip trayMenu;
trayMenu = new ContextMenuStrip();
trayMenu.Items.Add("Login", ContextMenuStripItemImages).Click += new EventHandler(Login_Click); //Create a new item in the context menu strip and link its Click event with Login_Click
trayIcon = new NotifyIcon();
trayIcon.ContextMenuStrip = trayMenu; //Set the ContextMenuStrip of trayIcon to trayMenu
}

private void Login_Click(object sender, EventArgs e)
{
    //Do something when Login is clicked
}

助けてくれてありがとう!

4

1 に答える 1

1

そのようです:

trayMenu.Items.Add("Login", ContextMenuStripItemImages).add_Click({... script here ...})

送信者は$thisおよび e (EventArgs)で表され$_ます。

于 2013-06-26T14:04:50.070 に答える