我将实体对象绑定到 gridcontrol
{
InitializeComponent();
gridControl1.DataContext = from q in myEnt.item
from b in myEnt.item_type
where q.item_type_fk == b.item_type_id
select new { q.item_name, q.item,m_type};
}
哪个运作良好。当我单击网格控件中的一行时,我想在文本框中显示相关数据。我该怎么做?我试过这个:
<TextBox Name="TextBox3" Text="{Binding Path=item_name}"/>
不起作用。