我正在将来自数据库的数据绑定到ListBoxItem's
,下面是代码:
public void load_users()
{
RST_DBDataContext conn = new RST_DBDataContext();
List<TblUser> users = (from s in conn.TblUsers
select s).ToList();
Login_Names.ItemsSource = users;
}
在 XAML 中,有以下代码:
<ListBox Name="Login_Names"
ItemsSource="{Binding Path=UserName}"
HorizontalAlignment="Left"
Height="337" Margin="10,47,0,0"
Padding="0,0,0,0" VerticalAlignment="Top" Width="156">
但它不起作用,它显示表名,但我需要查看来自表的用户名,在 TblUsers 中有一个名为 UserName 的列。
提前致谢。