Hi,
I have a listview like this and would like to access the textbox of SELECTED ITEM in side?
lsitview.blah.blah.findTheTextBox("blah").Name="good!";
How am I able to do that? Thanks
<ListView Name="listview">
<ListView.View>
<GridView>
<GridViewColumn>
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBox Text="{Binding}"/>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
</GridView>
</ListView.View>
</ListView>