ComboBox.SelectedItem 为空

ComboBox.SelectedItem is null

我用 AD SamAccountName 项目填充了一个组合框。选择其中一项时,可以按下按钮以从该帐户检索信息。但是,单击按钮时,我收到以下 error:

Cannot validate argument on parameter 'Identity'. The argument is null. Provide a valid value for the argument, and then try running the command again.

错误所指的命令是:

$Label_User_ItemContent.Text = (Get-ADUser -Identity $ComboBox.SelectedItem).SamAccountName

代码的关键部分是:

        $ComboBox = New-Object -TypeName System.Windows.Forms.ComboBox
        $ComboBox.Width = 300
        $ComboBox.Location = New-Object -TypeName System.Drawing.Point(250, 25)

        $Users = Get-ADUser -Filter * | Where-Object {$_.SamAccountName -match '^adminA'}
        ForEach ($User in $Users){
            $ComboBox.Items.Add($User.SamAccountName)
        }
        $ComboBox.SelectedIndex = 1

            $MainWindow.Controls.Add($ComboBox)

        $Button_Check_TEST = New-Object -TypeName System.Windows.Forms.Button
        $Button_Check_TEST.Location = New-Object -TypeName System.Drawing.Size(350, 150)
        $Button_Check_TEST.Size = New-Object -TypeName System.Drawing.Size(150, 50)
        $Button_Check_TEST.Text = 'Check'

        $MainWindow.Controls.Add($Button_Check_TEST)

        $Button_Check_TEST.Add_Click({
            Try{
                $Label_User_ItemContent.Text = (Get-ADUser -Identity $ComboBox.SelectedItem).SamAccountName
            }
            Catch{
                Write-Verbose -Verbose $_.Exception.Message
            }
        })

问题是,我需要两层。基本上,应该有一个包含四个不同选项的菜单,其中之一是 'User'。单击 'User' 时,组合框和 'Click' 按钮将出现。 在没有 'User'-Button 的情况下使用上面的代码可以正常工作。

问题:为什么当我使用按钮'create'组合框时ComboBox.SelectedItem不起作用?

完整代码如下:

    $font = New-Object -TypeName System.Drawing.Font("Times New Roman", 18, [System.Drawing.FontStyle]::Bold)

    $MainWindow = New-Object -TypeName System.Windows.Forms.Form
    $MainWindow.Text = 'PIM v10 Administrator Window'
    $MainWindow.Width = 600
    $MainWindow.Height = 555
    $MainWindow.AutoSize = $true

    $Button_User = New-Object -TypeName System.Windows.Forms.Button
    $Button_User.Location = New-Object -TypeName System.Drawing.Size(25, 25)
    $Button_User.Size = New-Object -TypeName System.Drawing.Size(200, 75)
    $Button_User.Text = 'User'
    $Button_User.Font = $font

        $MainWindow.Controls.Add($Button_User)

    $Button_User.Add_Click({
    $Label_User = New-Object -TypeName System.Windows.Forms.Label
    $Label_User.Text = 'Given Name:'
    $Label_User.Location = New-Object -TypeName System.Drawing.Point(250, 50)
    $Label_User.AutoSize = $true

        $MainWindow.Controls.Add($Label_User)

    $Label_User_ItemContent = New-Object -TypeName System.Windows.Forms.Label
    $Label_User_ItemContent.Text = ''
    $Label_User_ItemContent.Location = New-Object -TypeName System.Drawing.Point(250, 100)

        $MainWindow.Controls.Add($Label_User_ItemContent)

    $ComboBox = New-Object -TypeName System.Windows.Forms.ComboBox
    $ComboBox.Width = 300
    $ComboBox.Location = New-Object -TypeName System.Drawing.Point(250, 25)

    $Users = Get-ADUser -Filter * | Where-Object {$_.SamAccountName -match '^adminA'}
     ForEach ($User in $Users){
         $ComboBox.Items.Add($User.SamAccountName)
        }
     $ComboBox.SelectedIndex = 1

        $MainWindow.Controls.Add($ComboBox)

     $Button_Check_TEST = New-Object -TypeName System.Windows.Forms.Button
     $Button_Check_TEST.Location = New-Object -TypeName System.Drawing.Size(350, 150)
     $Button_Check_TEST.Size = New-Object -TypeName System.Drawing.Size(150, 50)
     $Button_Check_TEST.Text = 'Check'

     $MainWindow.Controls.Add($Button_Check_TEST)

     $Button_Check_TEST.Add_Click({
            Try{
                $Label_User_ItemContent.Text = (Get-ADUser -Identity $ComboBox.SelectedItem).SamAccountName
            }
            Catch{
                Write-Verbose -Verbose $_.Exception.Message
            }
        })

     if (-not ($ComboBox.SelectedItem -eq $null)){
         $Label_User_ItemContent.Text = (Get-ADUser -Identity $ComboBox.SelectedItem).SamAccountName
     }
     else {
        Write-Host -Object "Object is null"
     }
    })
    $MainWindow.ShowDialog()

所以你在错误的范围内创建了变量

$Button_User.Add_Click({
    $ComboBox = New-Object -TypeName System.Windows.Forms.ComboBox
    $Label_User_ItemContent = New-Object -TypeName System.Windows.Forms.Label
    $MainWindow.Controls.Add($ComboBox)
    $Label_User_ItemContent = New-Object -TypeName System.Windows.Forms.Label
    $Button_Check_TEST.Add_Click({
        $Label_User_ItemContent.Text = (Get-ADUser -Identity 
        $ComboBox.SelectedItem).SamAccountName
    )}
})

因为您是在 Add_click 操作中创建 Combo 和 Lable。这些值仅在采取操作时存在于 $MainWindows.Controls 中。然后从内存中清除这些项目

当你运行下一个动作时$Button_Check_TEST.Add_Click()因为变量被清除然后$ComboBox$Label_User_ItemContent什么都没有。

解决方法是将它们放在 $Button_User.Add_Click() 事件之外

$ComboBox = New-Object -TypeName System.Windows.Forms.ComboBox
$Label_User_ItemContent = New-Object -TypeName System.Windows.Forms.Label
$Button_User.Add_Click({
    $MainWindow.Controls.Add($ComboBox)
    $Label_User_ItemContent = New-Object -TypeName System.Windows.Forms.Label
    $Button_Check_TEST.Add_Click({
        $Label_User_ItemContent.Text = (Get-ADUser -Identity 
        $ComboBox.SelectedItem).SamAccountName
    )}
})

这里是整个脚本的工作状态

$font = New-Object -TypeName System.Drawing.Font("Times New Roman", 18, [System.Drawing.FontStyle]::Bold)

$MainWindow = New-Object -TypeName System.Windows.Forms.Form
$MainWindow.Text = 'PIM v10 Administrator Window'
$MainWindow.Width = 600
$MainWindow.Height = 555
$MainWindow.AutoSize = $true

$Button_User = New-Object -TypeName System.Windows.Forms.Button
$Button_User.Location = New-Object -TypeName System.Drawing.Size(25, 25)
$Button_User.Size = New-Object -TypeName System.Drawing.Size(200, 75)
$Button_User.Text = 'User'
$Button_User.Font = $font

$MainWindow.Controls.Add($Button_User)

$ComboBox = New-Object -TypeName System.Windows.Forms.ComboBox
$Label_User_ItemContent = New-Object -TypeName System.Windows.Forms.Label

$Button_User.Add_Click({
    $Label_User = New-Object -TypeName System.Windows.Forms.Label
    $Label_User.Text = 'Given Name:'
    $Label_User.Location = New-Object -TypeName System.Drawing.Point(250, 50)
    $Label_User.AutoSize = $true

    $MainWindow.Controls.Add($Label_User)


    $Label_User_ItemContent.Text = ''
    $Label_User_ItemContent.Location = New-Object -TypeName System.Drawing.Point(250, 100)

    $MainWindow.Controls.Add($Label_User_ItemContent)


    $ComboBox.Width = 300
    $ComboBox.Location = New-Object -TypeName System.Drawing.Point(250, 25)

    $Users = Get-ADUser -Filter * | Where-Object {$_.SamAccountName -match '^adminA'}
    $MainWindow.Controls.Add($ComboBox)
    ForEach ($User in $Users){
        $ComboBox.Items.Add($User.SamAccountName)
    }
    $MainWindow.Controls.Add($ComboBox)
    $ComboBox.SelectedIndex = 0   
    $Button_Check_TEST = New-Object -TypeName System.Windows.Forms.Button
    $Button_Check_TEST.Location = New-Object -TypeName System.Drawing.Size(350, 150)
    $Button_Check_TEST.Size = New-Object -TypeName System.Drawing.Size(150, 50)
    $Button_Check_TEST.Text = 'Check'

    $MainWindow.Controls.Add($Button_Check_TEST)

    $Button_Check_TEST.Add_Click({
        Try{
            $Label_User_ItemContent.Text = (Get-ADUser -Identity $ComboBox.SelectedItem).SamAccountName
        }
        Catch{
            Write-Verbose -Verbose $_.Exception.Message
        }
    })

    if (-not ($ComboBox.SelectedItem -eq $null)){
        $Label_User_ItemContent.Text = (Get-ADUser -Identity $ComboBox.SelectedItem).SamAccountName
    }
    else {
        Write-Host -Object "Object is null"
    }
})
$MainWindow.ShowDialog()