mirror of
https://github.com/rbalsleyMSFT/FFU.git
synced 2026-06-14 02:09:35 -06:00
More driver work
This commit is contained in:
committed by
rbalsleyMSFT
parent
e73fa2d7f9
commit
e209251d0b
@@ -513,6 +513,23 @@ $window.Add_Loaded({
|
||||
$script:chkDownloadDrivers.Add_Unchecked({
|
||||
$script:spMakeModelSection.Visibility = [System.Windows.Visibility]::Collapsed
|
||||
})
|
||||
|
||||
$script:chkInstallDrivers = [System.Windows.Controls.CheckBox]$window.FindName('chkInstallDrivers')
|
||||
$script:chkCopyDrivers = [System.Windows.Controls.CheckBox]$window.FindName('chkCopyDrivers')
|
||||
|
||||
$script:chkInstallDrivers.Add_Checked({
|
||||
$script:chkCopyDrivers.IsEnabled = $false
|
||||
})
|
||||
$script:chkInstallDrivers.Add_Unchecked({
|
||||
$script:chkCopyDrivers.IsEnabled = $true
|
||||
})
|
||||
|
||||
$script:chkCopyDrivers.Add_Checked({
|
||||
$script:chkInstallDrivers.IsEnabled = $false
|
||||
})
|
||||
$script:chkCopyDrivers.Add_Unchecked({
|
||||
$script:chkInstallDrivers.IsEnabled = $true
|
||||
})
|
||||
})
|
||||
|
||||
# Show the window
|
||||
|
||||
Reference in New Issue
Block a user