gpt4 book ai didi

powershell - 如何创建带有是/否按钮和信息标记图标的弹出窗口?

转载 作者:行者123 更新时间:2023-12-01 09:45:50 24 4
gpt4 key购买 nike

我需要在 PowerShell 中有一个弹出窗口,其中包含带有是和否按钮的信息标记图标。
我目前的代码如下:

$wshell = New-Object -ComObject Wscript.Shell
$answer = $wshell.Popup("Do you want to continue?",0,"Alert",0x4)

if($answer -eq 7){exit}
只有是或否部分。我也需要一个图标。

最佳答案

你可以这样做:

$answer = $wshell.Popup("Do you want to continue?",0,"Alert",64+4)

values图标如下:
Stop          16
Question 32
Exclamation 48
Information 64

按钮的值如下:
OK               0
OKCancel 1
AbortRetryIgnore 2
YesNoCancel 3
YesNo 4
RetryCancel 5

所以信息图标和是/否按钮是 64 + 4

在这种情况下,IMO 使用问题图标更有意义,因为您是在提出问题,而不仅仅是传达信息,因此在这种情况下它将是 32 + 4。

关于powershell - 如何创建带有是/否按钮和信息标记图标的弹出窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49063153/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com