mirror of
https://github.com/ChrisTitusTech/winutil.git
synced 2024-12-31 18:24:27 -06:00
33 lines
999 B
PowerShell
33 lines
999 B
PowerShell
function Invoke-WPFTab {
|
|
|
|
<#
|
|
|
|
.SYNOPSIS
|
|
Sets the selected tab to the tab that was clicked
|
|
|
|
.PARAMETER ClickedTab
|
|
The name of the tab that was clicked
|
|
|
|
#>
|
|
|
|
Param (
|
|
[Parameter(Mandatory,position=0)]
|
|
[string]$ClickedTab
|
|
)
|
|
|
|
$tabNav = Get-WinUtilVariables | Where-Object {$psitem -like "WPFTabNav"}
|
|
$tabNumber = [int]($ClickedTab -replace "WPFTab","" -replace "BT","") - 1
|
|
|
|
$filter = Get-WinUtilVariables -Type ToggleButton | Where-Object {$psitem -like "WPFTab?BT"}
|
|
($sync.GetEnumerator()).where{$psitem.Key -in $filter} | ForEach-Object {
|
|
if ($ClickedTab -ne $PSItem.name) {
|
|
$sync[$PSItem.Name].IsChecked = $false
|
|
} else {
|
|
$sync["$ClickedTab"].IsChecked = $true
|
|
$tabNumber = [int]($ClickedTab-replace "WPFTab","" -replace "BT","") - 1
|
|
$sync.$tabNav.Items[$tabNumber].IsSelected = $true
|
|
}
|
|
}
|
|
$sync.currentTab = $sync.$tabNav.Items[$tabNumber].Header
|
|
}
|