我已经在 DataGrid 控件中加载了上面的表状态。但是我想获取特定的列state_name,然后将它的值(Tx,TN,UP,Nul,.....)添加到组合框项目中。我编写的将状态表加载到 DataGrid 控件中的代码。
using (DataClasses1DataContext _mc = new DataClasses1DataContext())
{
var _MyCountry = from cntry in _mc.GetTable<state>() select cntry;
grd_table.ItemsSource = _MyCountry;
}