Can PowerShell be used as code behind for WPF - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:23:53Z http://stackoverflow.com/feeds/question/686445 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/686445/can-powershell-be-used-as-code-behind-for-wpf 2 Can PowerShell be used as code behind for WPF alex2k8 2009-03-26T16:11:58Z 2009-03-26T17:57:09Z <p>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?</p> http://stackoverflow.com/questions/686445/can-powershell-be-used-as-code-behind-for-wpf/686486#686486 0 Answer by Andy for Can PowerShell be used as code behind for WPF Andy 2009-03-26T16:22:53Z 2009-03-26T16:22:53Z <p>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.</p> http://stackoverflow.com/questions/686445/can-powershell-be-used-as-code-behind-for-wpf/686881#686881 4 Answer by Steven Murawski for Can PowerShell be used as code behind for WPF Steven Murawski 2009-03-26T17:57:09Z 2009-03-26T17:57:09Z <p>PowerShell can be used to provide functionality in a WPF application. Check out these great blog posts regarding using PowerShell and WPF...</p> <p>HuddledMasses.Org - PowerBoots - a WPF GUI Toolkit for PowerShell</p> <p><a href="http://huddledmasses.org/powerboots-shoes-for-powershell/" rel="nofollow">PowerBoots - Shoes for PowerShell</a></p> <p><a href="http://huddledmasses.org/powerboots-loading-xaml-windows-in-powershell-10-or-20/" rel="nofollow">PowerBoots - Loading XAML Windows in PowerShell 1.0 or 2.0</a></p> <p>Windows PowerShell Team Blog</p> <p><a href="http://blogs.msdn.com/powershell/archive/2008/05/25/powershell-and-wpf-wtf.aspx" rel="nofollow">http://blogs.msdn.com/powershell/archive/2008/05/25/powershell-and-wpf-wtf.aspx</a></p> <p><a href="http://blogs.msdn.com/powershell/archive/2008/05/22/wpf-powershell-part-1-hello-world-welcome-to-the-week-of-wpf.aspx" rel="nofollow">WPF &amp; PowerShell – Part 1 ( Hello World &amp; Welcome to the Week of WPF )</a></p> <p><a href="http://blogs.msdn.com/powershell/archive/2008/05/23/wpf-powershell-part-2-exploring-wpf-and-the-rest-of-net-with-scripts.aspx" rel="nofollow">WPF &amp; PowerShell – Part 2 (Exploring WPF (and the rest of .NET) with Scripts)</a></p> <p><a href="http://blogs.msdn.com/powershell/archive/2008/05/24/wpf-powershell-part-3-handling-events.aspx" rel="nofollow">WPF &amp; PowerShell -- Part 3 (Handling Events)</a></p> <p><a href="http://blogs.msdn.com/powershell/archive/2008/05/25/wpf-powershell-part-4-xaml-show-control.aspx" rel="nofollow">WPF &amp; PowerShell -- Part 4 (XAML &amp; Show-Control)</a></p> <p><a href="http://blogs.msdn.com/powershell/archive/2008/05/26/wpf-powershell-part-5-using-wpf-powershell-modules.aspx" rel="nofollow">WPF &amp; PowerShell - Part 5 ( Using WPF &amp; PowerShell Modules)</a></p> <p><a href="http://blogs.msdn.com/powershell/archive/2008/05/27/wpf-powershell-part-6-running-functions-in-the-background.aspx" rel="nofollow">WPF &amp; PowerShell - Part 6 (Running Functions in the Background)</a></p> <p><a href="http://blogs.msdn.com/powershell/archive/2008/05/28/wpf-powershell-part-7-sharing-hosts.aspx" rel="nofollow">WPF &amp; PowerShell - Part 7 (Sharing Hosts)</a></p>