3
我覺得這個問題關於loading .net 4.0 dll in Powershell。如何在PowerShell ISE中使用WPF DataGrid(.Net 4.0)?
現在我想知道哪些添加型我必須使用,要能夠使用WPF Datagrid從PowerShell的ISE
以下工作
[xml] $xaml = @"
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<DataGrid Height="200" Width="500" HorizontalAlignment="Left" Margin="12,21,0,0"
Name="McDataGrid" VerticalAlignment="Top" RowHeight="30" ColumnWidth="100" >
</Window>
"@
$reader=(New-Object System.Xml.XmlNodeReader $xaml)
$Form=[Windows.Markup.XamlReader]::Load($reader)
$Form.ShowDialog()
[There](http://fr.w3support.net/index.php?db=so&id=687754)似乎是WPF工具包的一些示例。 – JPBlanc 2011-05-01 09:19:52
爲什麼任何人都應該安裝WPF工具包3.5,當他有.NET 4.0時?兩者都有點不同 – 2011-05-01 10:43:10