如何使用是/否按钮和信息标记图标创建弹出窗口?

问题描述 投票:2回答:2

我需要在powershell中有一个弹出窗口,它有信息标记图标和是和否按钮。

我目前的代码如下:

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

if($answer -eq 7){exit}

只有是或否的部分。我也需要一个图标。

提前致谢!

powershell popup
2个回答
2
投票

你可以这样做:

$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。


3
投票

标记为samgak。有很多方法可以做你想要的事情。

或这个...

[System.Windows.Forms.MessageBox]::Show("We are proceeding with next step." , "Status" , 4, 64)

或这个...

[System.Windows.Forms.MessageBox]::Show("Continue Task?","What a Mess", "YesNo" , "Information" , "Button1")

或这个...

[void][System.Reflection.Assembly]::LoadWithPartialName(‘Microsoft.VisualBasic’) 
# [microsoft.visualbasic.interaction]::Msgbox($message,"$button,$icon",$title)
[Microsoft.VisualBasic.Interaction]::MsgBox(“Do you agree?”, ‘YesNoCancel,Information’, “Respond please”) 
© www.soinside.com 2019 - 2024. All rights reserved.