Files
DSC-Configuration-Compiler/Functions/Show-Template.ps1
Torsten Brendgen 01a535eb39 Initial commit
2026-04-13 15:40:51 +02:00

10 lines
255 B
PowerShell

function Show-Template {
Param(
[System.Collections.Hashtable] $Template
)
$treeView.Nodes.Clear()
$tempBuilder = [TreeViewBuilder]::new()
$tempBuilder.control = $treeView
$tempBuilder.LoadTemplate($Template, "Template")
}