我是 WPF 的新手。
我正在尝试在受尊重的文本框中检索选定的 gridview 行的值。
在 Windows 应用程序中,我习惯这样做:
txtPartyCode=gv.SelectedRows[0].Cells[1].Value.ToString();
但我很困惑,如何用 WPF 做到这一点?
我试过了:
txtPartyCode.Text=gvCust.SelectedItem[0]
但是,红色工具提示出现在代码下方:can not apply index with [] to an expression of type object.
请帮我。如何用 WPF 做到这一点?