Click here to Skip to main content
15,885,782 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,

I'm trying to populate the List<string> in ListView, but facing problem not at all able to populate the data.

Below giving the steps that I'm following please help.
C#
class Data
{

//using cLR properties and not a dependency property (not sure whether that causing 
//any problem)

private List<string> _pName;
      private List<string> _pNumber;

  public' List'<string>' PName
        {
            get { return _pName; }
            set { _pName= value; }
        }

        public' List<string> PNumber
        {
            get { return _pNumber; }
            set { _pNumber= value; }
        }

//Getting data in PName and PNumber accordingly by some function call 

My XAML looks like this -
HTML
'<listview selectedvaluepath="Value" name="someName" selectionmode="Single" margin="263,35,12,50">
'selectionchanged="some_SelectionChanged" focusable="False" fontweight="Bold" tabindex="4">
          
            '<listview.view>
                '<gridview>
                    '<gridview.columns>
                        '<gridviewcolumn header="Person Number" width="Auto" />
                        '<gridviewcolumn header="Person Name" width="Auto" />
                    ' </gridview.columns>
                '</gridview>
            '</listview.view>
       ' </listview>

Search on this a lot but seems its not working.

Please let me know if you need any more details.

Thanks !!
Posted
Updated 15-Dec-11 23:32pm
v4

You just didn't populate your listview
Example how to do it:

someName.ItemsSource = Data.PNumber();

You can put into the someName.ItemSource=// a special method like GetYourPNumbers()

Add to your definition of the listview someName
ItemContainerStyle="{StaticResource ItemContStyle}";
ItemsSource="{Binding}";
 
Share this answer
 
refer:

<a href="http://stackoverflow.com/questions/1927139/wpf-listview-databinding-to-generic-list-dynamically-filled-by-wcf-service">http://stackoverflow.com/questions/1927139/wpf-listview-databinding-to-generic-list-dynamically-filled-by-wcf-service</a>[<a href="http://stackoverflow.com/questions/1927139/wpf-listview-databinding-to-generic-list-dynamically-filled-by-wcf-service" target="_blank" title="New Window">^</a>]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900