vote up 2 vote down star

We can use [Windows.Markup.XamlReader]::Load to load XAML file in PowerShell, but is there some way to specify some PowerShell script as code behind?

flag

75% accept rate

2 Answers

vote up 0 vote down check

While I don't know for sure, I would guess not. Given that Visual Studio only exposes C# and VB as languages to use to build WPF applications, that implies that work needs to be done at the tool level in order to add support for WPF to a language. Since a .NET language doesn't get WPF support "for free", it's doubtful that PowerShell has the ability to be the code behind for a WPF UI.

link|flag
vote up 4 vote down

PowerShell can be used to provide functionality in a WPF application. Check out these great blog posts regarding using PowerShell and WPF...

HuddledMasses.Org - PowerBoots - a WPF GUI Toolkit for PowerShell

PowerBoots - Shoes for PowerShell

PowerBoots - Loading XAML Windows in PowerShell 1.0 or 2.0

Windows PowerShell Team Blog

http://blogs.msdn.com/powershell/archive/2008/05/25/powershell-and-wpf-wtf.aspx

WPF & PowerShell – Part 1 ( Hello World & Welcome to the Week of WPF )

WPF & PowerShell – Part 2 (Exploring WPF (and the rest of .NET) with Scripts)

WPF & PowerShell -- Part 3 (Handling Events)

WPF & PowerShell -- Part 4 (XAML & Show-Control)

WPF & PowerShell - Part 5 ( Using WPF & PowerShell Modules)

WPF & PowerShell - Part 6 (Running Functions in the Background)

WPF & PowerShell - Part 7 (Sharing Hosts)

link|flag
No problem. Joel "Jaykul" Bennet and James Brundage have both done a lot of work with WPF and PowerShell. Great stuff. – Steven Murawski Mar 26 at 19:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.