admin管理员组文章数量:1344950
How can I assign a link to each button? I can't manged it... I dont speak english well. Sorry for the translation...
$ButtonName =@('Option One', 'Option Two', 'Option Three')
$i = 0
$ButtonName |
foreach{
$CurrentButton = $null
$CurrentButton = New-Object System.Windows.Forms.Button
$CurrentButton.Location = "$(10+70*$i),35"
$CurrentButton.width = 60
$CurrentButton.height = 60
$CurrentButton.Image = [System.Drawing.Image]::FromFile("c:\script\" + $ButtonName[$i] + ".jpg")
$CurrentButton.Add_Click({Start-Process -FilePath "c:\script\" + $ButtonName[$i] + ".lnk"})
$i++
$Script.Controls.Add($CurrentButton)
}
$CurrentButton.Add_Click({Start-Process -FilePath "c:\script" + $ButtonName[$i] + ".lnk"}) does not work...
How can I assign a link to each button? I can't manged it... I dont speak english well. Sorry for the translation...
$ButtonName =@('Option One', 'Option Two', 'Option Three')
$i = 0
$ButtonName |
foreach{
$CurrentButton = $null
$CurrentButton = New-Object System.Windows.Forms.Button
$CurrentButton.Location = "$(10+70*$i),35"
$CurrentButton.width = 60
$CurrentButton.height = 60
$CurrentButton.Image = [System.Drawing.Image]::FromFile("c:\script\" + $ButtonName[$i] + ".jpg")
$CurrentButton.Add_Click({Start-Process -FilePath "c:\script\" + $ButtonName[$i] + ".lnk"})
$i++
$Script.Controls.Add($CurrentButton)
}
Share Improve this question edited yesterday mklement0 442k68 gold badges707 silver badges925 bronze badges asked yesterday BernhardBernhard 134 bronze badges 1 |$CurrentButton.Add_Click({Start-Process -FilePath "c:\script" + $ButtonName[$i] + ".lnk"}) does not work...
1 Answer
Reset to default 2The problem here is that the event handler doesn't "remember" the value of $i
at the time it was defined. To work around this, we can close over a local variable reference:
$ButtonNames = @('Option One', 'Option Two', 'Option Three')
for($i = 0; $i -lt $ButtonNames.Count; $i++) {
# assign value to local variable
$ButtonName = $ButtonNames[$i]
$CurrentButton = New-Object System.Windows.Forms.Button
$CurrentButton.Location = "$(10+70*$i),35"
$CurrentButton.Width = 60
$CurrentButton.Height = 60
$CurrentButton.Image = [System.Drawing.Image]::FromFile("c:\script\${ButtonName}.jpg")
# after running `GetNewClosure`, the resulting scriptblock will "remember" the value of $ButtonName
$CurrentButton.Add_Click({Invoke-Item "C:\script\${ButtonName}.lnk"}.GetNewClosure())
$Script.Controls.Add($CurrentButton)
}
本文标签: Powershell Array of Buttons with LinkStack Overflow
版权声明:本文标题:Powershell: Array of Buttons with Link - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795156a2540292.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
$PSItrem
or$_
):"c:\script\$_.ps1"
– iRon Commented yesterday