我正在使用PowerShell的“WPF Toolkit”中的DataGrid。问题是我无法使用GUI添加新行。
dialog.xaml
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:dg="clr-namespace:Microsoft.Windows.Controls;assembly=WpfToolkit"
>
<Window.Resources>
<x:Array x:Key="people" Type="sys:Object" />
</Window.Resources>
<StackPanel>
<dg:DataGrid x:Name="_grid" ItemsSource="{DynamicResource people}" CanUserAddRows="True" AutoGenerateColumns="False">
<dg:DataGrid.Columns>
<dg:DataGridTextColumn Header="First" Binding="{Binding First}"></dg:DataGridTextColumn>
<dg:DataGridTextColumn Header="Last" Binding="{Binding Last}"></dg:DataGridTextColumn>
</dg:DataGrid.Columns>
</dg:DataGrid>
<Button>test</Button>
</StackPanel>
</Window>
dialog.ps1
# Includes
Add-Type -AssemblyName PresentationFramework
[System.Reflection.Assembly]::LoadFrom("C:\Program Files\WPF Toolkit\v3.5.40320.1\WPFToolkit.dll")
# Helper methods
function LoadXaml
{
param($fileName)
[xml]$xaml = [IO.File]::ReadAllText($fileName)
$reader = (New-Object System.Xml.XmlNodeReader $xaml)
[Windows.Markup.XamlReader]::Load( $reader )
}
# Load XAML
$form = LoadXaml('.\dialog.xaml')
#
$john = new-object PsObject
$john | Add-Member -MemberType NoteProperty -Name "First" -Value ("John")
$john | Add-Member -MemberType NoteProperty -Name "Last" -Value ("Smith")
$people = @( $john )
$form.Resources["people"] = $people
#
$form.ShowDialog()
的run.bat
powershell -sta -file dialog.ps1
问题似乎出现在$ people collection中。我在C#中尝试了相同的代码并且它可以工作,但是这个集合是这样定义的:
List<Person> people = new List<Person>();
people.Add(new Person { First = "John", Last = "Smith" });
this.Resources["people"] = people;
还尝试了Clr集合 - 根本不起作用:
$people = New-Object "System.Collections.Generic.List``1[System.Object]"
$people.add($john)
有什么想法吗?
答案 0 :(得分:0)
[System.Collections.ArrayList] $ people = New-Object“System.Collections.ArrayList”
如果你必须传递参数,你应该使它们强类型, 因此PowerShell不会将其包装为PsObject。
答案 1 :(得分:0)
最终解决方案:
# Declare Person class
add-type @"
public class Person
{
public Person() {}
public string First { get; set; }
public string Last { get; set; }
}
"@ -Language CsharpVersion3
# Make strongly-typed collection
[System.Collections.ArrayList] $people = New-Object "System.Collections.ArrayList"
#
$john = new-object Person
$john.First = "John"
$john.Last = "Smith"
$people.add($john)
$form.Resources["people"] = $people