我不能使用 dataGrid 的 dataSource 属性?
我的用途是
使用系统;
使用 System.Collections.Generic;
使用 System.Linq;
使用 System.Text;
使用 System.Windows;
使用 System.Windows.Controls;
使用 System.Windows.Data;
使用 System.Windows.Documents;
使用 System.Windows.Input;
使用 System.Windows.Media;
使用 System.Windows.Media.Imaging;
使用 System.Windows.Navigation;
使用 System.Windows.Shapes;
使用 System.IO;
使用 System.Data;
private void button4_Click(object sender, RoutedEventArgs e)
{
tabControl1.SelectedIndex = 3;
dataGrid2.DataSource///////////////does not come up :S
ExcelData exceldata = new ExcelData();
this.dataGrid2.DataContext = exceldata;
}
我错过了什么?