I have a listview table see the picture in the link
What i want to do is to change the column x in row y programmatically. I am using wpf and a listview with the following xaml code.
`<ListView x:Name="listView1" Height="153" Width="444">
<ListView.View>
<GridView>
<GridViewColumn Header ="Code" Width="148"></GridViewColumn>
<GridViewColumn Header ="Name" Width="148"></GridViewColumn>
<GridViewColumn Header ="Country" Width="148"></GridViewColumn>
</GridView>
</ListView.View>
</ListView>
` What i want to do is to change the column x in row y programmatically. Something like this listview.Items[x].ColumnIndex[y] = "My value"; I need to pass a string value and i am not using databinding there.