做出选择时显示列表



我正试图在Windows.Form下处理一个脚本,但我有点卡住了。

我希望能够根据第一个列表中的选择显示一个特定的列表,这意味着在脚本开始时,只需要显示一个列表,而根据所做的选择,还需要显示许多其他列表。

以下是完整的脚本供参考

#Open a Window.
[Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
$form = New-Object Windows.Forms.Form
$form.text = "Contrôles"             
$form.Size = New-Object System.Drawing.Size(1000,700)
$OKButton = New-Object System.Windows.Forms.Button
$OKButton.Location = New-Object System.Drawing.Point(75,150)
$OKButton.Size = New-Object System.Drawing.Size(75,23)
$OKButton.Text = 'OK'
$OKButton.DialogResult = [System.Windows.Forms.DialogResult]::OK
$form.AcceptButton = $OKButton
$form.Controls.Add($OKButton)
$CancelButton = New-Object System.Windows.Forms.Button
$CancelButton.Location = New-Object System.Drawing.Point(150,150)
$CancelButton.Size = New-Object System.Drawing.Size(75,23)
$CancelButton.Text = 'Cancel'
$CancelButton.DialogResult = [System.Windows.Forms.DialogResult]::Cancel
$form.CancelButton = $CancelButton
$form.Controls.Add($CancelButton)
#Create the Data table (DataTable).
$table1 = New-Object system.Data.DataTable
$table2 = New-Object system.Data.DataTable
#Define the 2 column (Name, Type).
$colonne1 = New-Object system.Data.DataColumn Choice,([string])
$colonne2 = New-Object system.Data.DataColumn Choice,([string])
#Create columns in the data table.
$table1.columns.add($colonne1)
$table2.columns.add($colonne2)
#Add the data line by line in the data table.
$ligne = $table1.NewRow()   #Creation of the new row.
$ligne.Choice = "Service"    #In the column Choice we put the value we want.
$table1.Rows.Add($ligne)    #Add a line in the data table.
$ligne = $table1.NewRow()
$ligne.Choice = "Software"
$table1.Rows.Add($ligne)
$ligne = $table1.NewRow()
$ligne.Choice = "Other"
$table1.Rows.Add($ligne)
#Add the data line by line in the data table.
$ligne = $table2.NewRow()   #Creation of the new row.
$ligne.Choice = "Service Enable"  #In the column Choice we put the value we want.   
$table2.Rows.Add($ligne)    #Add a line in the data table.
$ligne = $table2.NewRow()
$ligne.Choice = "Service Disable"
$table2.Rows.Add($ligne)
$ligne = $table2.NewRow()
$ligne.Choice = "Other"
$table2.Rows.Add($ligne)
#Create the View.
$vu1 = New-Object System.Data.DataView($table1)
$vu1.Sort="Choice ASC"   #Tri la colonne "Extension" par ordre croissant.
$vu2 = New-Object System.Data.DataView($table2)
$vu2.Sort="Choice ASC"
$label = New-Object System.Windows.Forms.Label
$label.Location = New-Object System.Drawing.Point(650,50)
$label.Size = New-Object System.Drawing.Size(280,35)
$label.Text = 'Please enter the information in the space below:'
$form.Controls.Add($label)
$textBox = New-Object System.Windows.Forms.TextBox
$textBox.Location = New-Object System.Drawing.Point(650,100)
$textBox.Size = New-Object System.Drawing.Size(260,20)
$form.Controls.Add($textBox)
#Create the Drop-down list (ComboBox).
$liste1 = New-Object System.Windows.Forms.Combobox
$liste1.Location = New-Object Drawing.Point 20,50
$liste1.Size = New-Object System.Drawing.Size(150, 50)
$liste1.DropDownStyle = "DropDownList"
$liste2 = New-Object System.Windows.Forms.Combobox
$liste2.Location = New-Object Drawing.Point 350,50
$liste2.Size = New-Object System.Drawing.Size(150, 50)
$liste2.DropDownStyle = "DropDownList"
#Associate the Data to the Drop-down list
#To do so, we create a "Binding Context".
$liste1.BindingContext = New-Object System.Windows.Forms.BindingContext
$liste1.DataSource = $vu1  #Assigne the view that contains the sorted Data.
$liste1.DisplayMember = "Choice"  #Column that will be displayed (Choice).  
$liste2.BindingContext = New-Object System.Windows.Forms.BindingContext
$liste2.DataSource = $vu2   #Assigne the view that contains the sorted Data.
$liste2.DisplayMember = "Choice"    #Column that will be displayed (Choice). 
#Attach the control to the window.
$form.controls.add($liste1)
$form.controls.add($liste2)
#Show everything.
$form.Add_Shown({$textBox.Select()})
$result = $form.ShowDialog()
#Work the code arround.
if ($liste1.DisplayMember= "Service Enable")
{set-service -name RemoteRegistry -ComputerName $textBox.Text -StartupType Automatic}
if ($liste1.DisplayMember = "Service Disable")
{set-service -name RemoteRegistry -ComputerName $textBox.Text -StartupType Automatic}
Write-Host "ComboBox = " $liste1.DisplayMember
Write-Host "ComboBox = " $liste2.selectedvalue
#Fin.

如果有人知道我可以去哪里,那就太好了。

谢谢你Nad

1。您的代码中没有窗体/触发器事件。

2.您的代码中没有正确的GUI对象来保存列表/记录结果。

表单只是一个容器,用来容纳元素,直到您添加后面的代码以使它执行某些操作。你必须有一个合适的GUI对象来发送结果。

我不确定你是否在ISE或VSCode或记事本中手动完成这一切,但这是一个很好的第一步。然而,你所展示的似乎表明你在GUI开发/一般应用程序开发工作方面并没有真正跟上进度,因为你所做的并不是PowerShell独有的,而是任何应用程序开发客户端或web所必需的。

所以,实际上,花一些时间研究/回顾一般的WPF/Winforms开发,表单事件的内容将被涵盖。

至于您的用例,您需要:

  • 定义列表GUI对象(多行、ListBox、ListView、datagrid(以保存结果(同步组合框意味着在事件操作中添加和删除元素(
  • 定义该列表是什么(文本文件、数据库读取等(
  • 在单击、更改或其他表单事件中,从该列表中读取并填充GUI列表对象

本网站和网络上都有很多这样的例子。

这里有一个关于PowerShell GUI开发的好视频:

powershell根据另一个组合框上的所选项目填充组合框

从上面的讨论(不是在不了解什么和为什么的情况下只添加到代码中(:

Use a ComboBox.SelectionChangeCommitted Event:
"Occurs when the user changes the selected item and that change is displayed in the ComboBox"
$combobox2_SelectionChangeCommitted={
$Mailboxes = Get-Mailbox -OrganizationalUnit $ClientSelected
foreach ($mailbox in $Mailboxes)
{
$CurrentMailbox = "{0} ({1})" -f $mailbox.Name, $mailbox.Alias
Load-ComboBox $combobox2 $CurrentMailbox -Append
}
}
Use a button: 
$button1_Click={
$Mailboxes = Get-Mailbox -OrganizationalUnit $ClientSelected
foreach ($mailbox in $Mailboxes)
{
$CurrentMailbox = "{0} ({1})" -f $mailbox.Name, $mailbox.Alias
Load-ComboBox $combobox2 $CurrentMailbox -Append
}
}

最后,使用这个…

Write-Host "ComboBox = " $liste1.DisplayMember
Write-Host "ComboBox = " $liste2.selectedvalue

…不是可以做的事情,因为控制台不会打开以查看这些结果,并且应该避免写入主机,除非在使用其他仅限控制台的格式化场景的仅限控制台文本着色时,它还会清空显示缓冲区,因此无法将其发送到其他任何地方。此外,表单上的任何位置都没有名为"ComboBox"的GUI对象,因此它对您的用例没有任何作用。

经过一些时间和研究,我终于找到了我需要的东西。

这可能会帮助那些偶然发现这篇帖子的人,所以这里是我发现的一小部分

function Service()
{if ($ListBox1.SelectedItem -eq 'Enable Services')
{
$form.Controls.Add($Label3)
$form.Controls.add($ListBox2)
$form.Controls.Add($Label4)
$form.Controls.Add($textBox)
$form.Controls.Add($Button2)
$form.Controls.Add($Button3)
}

我首先创建了一个有名称的函数,当在我的列表框"ComboBox"中进行选择时,它将计算我希望发生的情况

$button1.add_Click({ Service })

然后,我从我添加的按钮调用该函数,单击该按钮后,其他方框将出现在该按钮中。

这与@Postanote的回答没有太大区别,但这是我更放心的解决方案。

相关内容

  • 没有找到相关文章