Databinding ObservableCollection<T> to Datagrid not working
问题 Update Now I think I have narrowed the problem. I created single class public class OptionStrike { public OptionStrike(double p1, double p2, int p3) { // TODO: Complete member initialization P_OI = p1; StrikePrice = p2; P_Volume = p3; } public OptionStrike() { // TODO: Complete member initialization } public double P_OI { get; set; } public double P_Volume { get; set; } public double StrikePrice { get; set; } } Now, if i load the values to this OptionStrike as private void Test(object obj) {