Through the double click event I need to pull a value from a row / column in a ListvView populated by LINQ to SQL.
For example, when the user needs to select a row / column value from this ListView, after the double-click event, this information would feed a Textbox with the SQL database ID (not the ListView Index) corresponding to that row / column clicked.Look at how you can help me! Please!
Class that updates the List.
namespace TRSSystem.AcessoDados
public static List<tabProduto> Consultar_ALL()
{
TRSSystemDataClassesDataContext oDB = new TRSSystemDataClassesDataContext();
List<tabProduto> oProdutos = (from Selecao in oDB.tabProdutos orderby Selecao.Descricao select Selecao).ToList<tabProduto>();
return oProdutos;
}
When you start the WPF form ...
listView_tabProduto.ItemsSource = TRSSystem.AcessoDados.tabProdutoAcesso.Consultar_ALL();
Double Click Event (DOES NOT WORK)
private void Select_Item(object sender, MouseButtonEventArgs e)
{
txtDescricao.Text = listView_tabProduto.SelectedIndex.ToString(); -------> Não funciona
}