我正在尝试将自定义类绑定到来自c#的WPF DataGrid的itemssource成员。我实现了IList,但由于某种原因,我无法让列表显示任何成员。
我通过调用
在C#中设置ItemsSource属性 dataGridObject.ItemsSource = switchHolderObject
以下是我的价值定义:
public class AssetHolder<T> : Dictionary<string,T>, IList<T>, INotifyCollectionChanged, INotifyPropertyChanged where T : Asset
{
... // lots of code here
new public IEnumerator<T> GetEnumerator()
{
var enumerator = base.GetEnumerator();
while (enumerator.MoveNext())
{
var pair = enumerator.Current;
yield return pair.Value;
}
}
}
public class NonGenericAssetHolder : AssetHolder<Asset> {}
public class SwitchHolder : NonGenericAssetHolder {}
我在这里有三个课程的原因是为了解决C#中的词典不协变这一事实。
我已经验证我所有已实现的IList方法都正常工作,并且列表确实展开并拥有适当的数据,但DataGrid仍然没有显示任何成员。奇怪的是,当我将此方法添加到AssetHolder类时,它可以工作:
public List<T> Hack()
{
List<T> result = new List<T>();
foreach (T asset in this)
{
result.Add(asset);
}
return result;
}
并不断重新绑定DataGrid,如下所示:
SwitchGrid.ItemsSource = _tempLocation.Switches.Hack();
但是,这会产生巨大的性能损失,我觉得它应该按原样运行。有谁知道发生了什么?为什么DataGrid不显示我的数据?
答案 0 :(得分:0)
修改
我刚刚实现了IDictionary接口并添加了Dictionary的私有变量。
出于演示目的,我只使用了Interface中的Add和GetEnumerator。 这样我们就可以使用testclass Person:
为初学者做到这一点AssetHolder<Person> persons = new AssetHolder<Person>( );
persons.Add("One", new Person( ) { FirstName = "Jack" , LastName = "Jobs" , Age = 63 } );
persons.Add( "Two" , new Person( ) { FirstName = "Peter" , LastName = "Lastname" , Age = 33 } );
persons.Add( "Three" , new Person( ) { FirstName = "Wally" , LastName = "Breakfast" , Age = 33 } );
dataGrid1.DataContext = persons;
XAML:
<DataGrid AutoGenerateColumns="False" ItemsSource="{Binding}" Name="dataGrid1">
<DataGrid.Columns>
<DataGridTextColumn Width="1*" Header="FirstName" Binding="{Binding Path=FirstName}"/>
</DataGrid.Columns>
</DataGrid>
只是一个快速测试,但这是AssetHolder,看看GetEnumerator():
public class AssetHolder<T> : IDictionary<string , T>
{
Dictionary<string , T> dictionary;
public AssetHolder()
{
dictionary = new Dictionary<string , T>( );
}
public void Add( string key , T value )
{
dictionary.Add( key , value );
}
public bool ContainsKey( string key )
{
throw new NotImplementedException( );
}
public ICollection<string> Keys
{
get { throw new NotImplementedException( ); }
}
public bool Remove( string key )
{
throw new NotImplementedException( );
}
public bool TryGetValue( string key , out T value )
{
throw new NotImplementedException( );
}
public ICollection<T> Values
{
get { throw new NotImplementedException( ); }
}
public T this[string key]
{
get
{
throw new NotImplementedException( );
}
set
{
throw new NotImplementedException( );
}
}
public void Add( KeyValuePair<string , T> item )
{
throw new NotImplementedException( );
}
public void Clear( )
{
throw new NotImplementedException( );
}
public bool Contains( KeyValuePair<string , T> item )
{
throw new NotImplementedException( );
}
public void CopyTo( KeyValuePair<string , T>[ ] array , int arrayIndex )
{
throw new NotImplementedException( );
}
public int Count
{
get { throw new NotImplementedException( ); }
}
public bool IsReadOnly
{
get { throw new NotImplementedException( ); }
}
public bool Remove( KeyValuePair<string , T> item )
{
throw new NotImplementedException( );
}
IEnumerator<KeyValuePair<string , T>> IEnumerable<KeyValuePair<string , T>>.GetEnumerator( )
{
throw new NotImplementedException( );
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator( )
{
return dictionary.Values.GetEnumerator( );
}
}
人类:
public class Person
{
public string FirstName { get; set; }
public string LastName{get;set;}
public int Age { get; set; }
}
答案 1 :(得分:0)
我明白了!我的实现不起作用的原因是因为我包含了INotifyCollectionChanged和INotifyPropertyChanged接口,但我没有明确告诉它何时通知。当我停止实施它们时,它神奇地工作了!