Initial commit
This commit is contained in:
10
Functions/Show-Template.ps1
Normal file
10
Functions/Show-Template.ps1
Normal file
@@ -0,0 +1,10 @@
|
||||
function Show-Template {
|
||||
Param(
|
||||
[System.Collections.Hashtable] $Template
|
||||
)
|
||||
$treeView.Nodes.Clear()
|
||||
|
||||
$tempBuilder = [TreeViewBuilder]::new()
|
||||
$tempBuilder.control = $treeView
|
||||
$tempBuilder.LoadTemplate($Template, "Template")
|
||||
}
|
||||
Reference in New Issue
Block a user