mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-11-14 14:45:52 -06:00
25 lines
645 B
PowerShell
25 lines
645 B
PowerShell
function Invoke-WPFTab {
|
|
|
|
<#
|
|
|
|
.DESCRIPTION
|
|
Sole purpose of this function is to reduce duplicated code for switching between tabs.
|
|
|
|
#>
|
|
|
|
Param ($ClickedTab)
|
|
$Tabs = Get-WinUtilVariables | Where-Object {$psitem -like "WPFTab?BT"}
|
|
$TabNav = Get-WinUtilVariables | Where-Object {$psitem -like "WPFTabNav"}
|
|
$x = [int]($ClickedTab -replace "WPFTab","" -replace "BT","") - 1
|
|
|
|
0..($Tabs.Count -1 ) | ForEach-Object {
|
|
|
|
if ($x -eq $psitem){
|
|
$sync.$TabNav.Items[$psitem].IsSelected = $true
|
|
}
|
|
else{
|
|
$sync.$TabNav.Items[$psitem].IsSelected = $false
|
|
}
|
|
}
|
|
}
|