How can i get powershell output to WPF window. For example :
Write-Host -ForegroundColor Red -NoNewline "Connection down..."
or
Write-Output "$(Get-Date): Connection up!"
How to bind it to textBox in WPF.
How can i get powershell output to WPF window. For example :
Write-Host -ForegroundColor Red -NoNewline "Connection down..."
or
Write-Output "$(Get-Date): Connection up!"
How to bind it to textBox in WPF.
You can’t “bind it” to a textbox. You have to modify the Text property of the TextBox object and set it equal to whatever text you want displayed.