Answer the question
In order to leave comments, you need to log in
How to bind a Dictionary to a ListView with two way binding?
There is a class that describes the data, for example this:
public class Data
{
string description;
public string Description
{
get
{
return description;
}
set
{
description = value;
}
}
}
Dictionary<string,Data> DataList=new Dictionary<string,Data>();
Answer the question
In order to leave comments, you need to log in
The data model looks lousy. I would try to do without the Dictionary.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question