Devexpress 即使我正确设置了NotifyPropertyChanged事件,DevXPress GridControl也无法正确更新

Devexpress 即使我正确设置了NotifyPropertyChanged事件,DevXPress GridControl也无法正确更新,devexpress,gridcontrol,Devexpress,Gridcontrol,我遇到了一个非常奇怪的问题 基本思想是我有一个类来保存从交易api收到的有关外汇价格的数据。每个属性都已使用NotifyPropertyChanged方法设置,如下所示 class RealTimeBar { public event PropertyChangedEventHandler PropertyChanged; private const double EPSILON = 0.0000001; private int _id; private st

我遇到了一个非常奇怪的问题

基本思想是我有一个类来保存从交易api收到的有关外汇价格的数据。每个属性都已使用NotifyPropertyChanged方法设置,如下所示

class RealTimeBar
{
    public event PropertyChangedEventHandler PropertyChanged;

    private const double EPSILON = 0.0000001;

    private int _id;
    private string _symbol;
    private int _time;
    private float _open;
    private float _high;
    private float _low;
    private float _close;
    int _volume;

    public RealTimeBar(int id, string symbol)
    {
        _id = id;
        _symbol = symbol;
    }

    private void NotifyPropertyChanged(String info)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(info));
        }
    }

    public int Id
    {
        get
        {
            return _id;
        }
        set
        {
            _id = value;
        }
    }

    public string Symbol
    {
        get
        {
            return _symbol;
        }
        set
        {
            if (value != _symbol)
            {
                _symbol = value;
                NotifyPropertyChanged("Symbol");
            }
        }
    }

    public int Time
    {
        get
        {
            return _time;
        }
        set
        {
            if (value != _time)
            {
                _time = value;
                NotifyPropertyChanged("Time");
            }
        }
    }

    public float Open
    {
        get
        {
            return _open;
        }
        set
        {
            if (value != _open)
            {
                _open = value;
                NotifyPropertyChanged("Open");
            }
        }
    }

    public float High
    {
        get
        {
            return _high;
        }
        set
        {
            if (value != _high)
            {
                _high = value;
                NotifyPropertyChanged("High");
            }
        }
    }

    public float Low
    {
        get
        {
            return _low;
        }
        set
        {
            if (value != _low)
            {
                _low = value;
                NotifyPropertyChanged("Low");
            }
        }
    }

    public float Close
    {
        get
        {
            return _close;
        }
        set
        {
            if (value != _close)
            {
                _close = value;
                NotifyPropertyChanged("Close");
            }
        }
    }

    public int Volume
    {
        get
        {
            return _volume;
        }
        set
        {
            if (value != _volume)
            {
                _volume = value;
                NotifyPropertyChanged("Volume");
            }
        }
    }


}
这是一个很长的类,但正如您所看到的,它的结构很简单。现在我连接到api,该api向我触发事件,我通过将api中的值设置为我定义的类来处理它

    BindingList<RealTimeBar> _realTimeBarList = new BindingList<RealTimeBar>();
    public Hashtable _iForexHashtable = new Hashtable();

    private void _UpdateForexQuote(int tickerId, int time, double open, double high, double         low,    double close, int volume,
                             double wap, int count)
    {
        ///MessageBox.Show(tickerId.ToString());
        ((RealTimeBar)_iForexHashtable[tickerId]).Open = (float)open;
        ((RealTimeBar)_iForexHashtable[tickerId]).High = (float)high;
        ((RealTimeBar)_iForexHashtable[tickerId]).Low = (float)low;
        ((RealTimeBar)_iForexHashtable[tickerId]).Close = (float)close;
        ((RealTimeBar)_iForexHashtable[tickerId]).Volume = volume;

    }

您不仅需要在类中具有
PropertyChanged
事件,还需要实现
INotifyPropertyChanged
。网格就是这样知道类可以通知更改的。

您是从另一个线程更新的吗?@AseemGautam是的。我认为是这样。我怎样才能修好它?现在它正在工作。我让它运行了几个小时,它正确地更新了数据。但我认为这仍然是拖延。我不太懂线程。
private void earningButtonItem_ItemClick(object sender, ItemClickEventArgs e)
    {
        _iTimer.AutoReset = false;
        _iTimer.Enabled = false;
        switchStockPool = "Earning Stock";
        disconnectButtonItem.PerformClick();
        connectButtonItem.PerformClick();
        _iheitanshaoEarningDBConnect = new DBConnect("heitanshaoearning");
        List<string>[] tempList;
        int tempHash;
        tempList = _iheitanshaoEarningDBConnect.SelectSymbolHighLow();
        _quoteEarningOnGridList.Clear();

        ///tempList[0].Count
        for (int i = 0; i < tempList[0].Count; i++)
        {
            tempHash = Convert.ToInt32(tempList[0][i].ToString().GetHashCode());
            _iStockEarningHistHashtable[tempHash] = new QuoteOnGridHist(tempList[0][i], (float)Convert.ToSingle(tempList[1][i]), (float)Convert.ToSingle(tempList[2][i]), (float)Convert.ToSingle(tempList[3][i]));
            _iStockEarningHashtable[tempHash] = new QuoteOnGrid(tempList[0][i], 0, 0);
            _quoteEarningOnGridList.Add((QuoteOnGrid)_iStockEarningHashtable[tempHash]);
            reqMktDataExStock(tempHash, tempList[0][i].ToString());
        }

        List<string>[] tempVolumeList;
        tempVolumeList = _iheitanshaoEarningDBConnect.SelectAverageVolume();
        for (int i = 0; i < tempList[0].Count; i++)
        {
            tempHash = Convert.ToInt32(tempVolumeList[0][i].ToString().GetHashCode());
            ((QuoteOnGrid)_iStockEarningHashtable[tempHash]).Average_Volume = ((float)Convert.ToSingle(tempVolumeList[1][i])) / volumeDenominator;
        }

        gridControl.DataSource = _quoteEarningOnGridList;
    }
    /////////////////////
  private void _UpdateStockMarketQuote(int tikcerId, int field, double price, int canAutoExecute)
    {
        ////MessageBox.Show(tikcerId.ToString() + field.ToString() + price.ToString());
        if (switchStockPool == "Selected Stock")
        {
            if (field == 4)
            {
                ((QuoteOnGrid)_iStockHashtable[tikcerId]).Gap_From_High = ((float)price - ((QuoteOnGridHist)_iStockHistHashtable[tikcerId]).High) / ((QuoteOnGridHist)_iStockHistHashtable[tikcerId]).Close;
                ((QuoteOnGrid)_iStockHashtable[tikcerId]).Gap_From_Low = ((float)price - ((QuoteOnGridHist)_iStockHistHashtable[tikcerId]).Low) / ((QuoteOnGridHist)_iStockHistHashtable[tikcerId]).Close;
                ((QuoteOnGrid)_iStockHashtable[tikcerId]).Last_Price = (float)price;
            }
            //else if (field == 1)
            //{
            //    ((QuoteOnGrid)_iStockHashtable[tikcerId]).Gap_From_High = ((float)price - ((QuoteOnGridHist)_iStockHistHashtable[tikcerId]).High) / ((QuoteOnGridHist)_iStockHistHashtable[tikcerId]).Close;
            //    ((QuoteOnGrid)_iStockHashtable[tikcerId]).Gap_From_Low = ((float)price - ((QuoteOnGridHist)_iStockHistHashtable[tikcerId]).Low) / ((QuoteOnGridHist)_iStockHistHashtable[tikcerId]).Close;
            //}
        }
        else if (switchStockPool == "Earning Stock")
        {
            if (field == 4)
            {
                ((QuoteOnGrid)_iStockEarningHashtable[tikcerId]).Gap_From_High = ((float)price - ((QuoteOnGridHist)_iStockEarningHistHashtable[tikcerId]).High) / ((QuoteOnGridHist)_iStockEarningHistHashtable[tikcerId]).Close;
                ((QuoteOnGrid)_iStockEarningHashtable[tikcerId]).Gap_From_Low = ((float)price - ((QuoteOnGridHist)_iStockEarningHistHashtable[tikcerId]).Low) / ((QuoteOnGridHist)_iStockEarningHistHashtable[tikcerId]).Close;
                ((QuoteOnGrid)_iStockEarningHashtable[tikcerId]).Last_Price = (float)price;

            }
            //else if (field == 1)
            //{
            //    ((quoteongrid)_istockearninghashtable[tikcerid]).gap_from_high = ((float)price - ((quoteongridhist)_istockearninghisthashtable[tikcerid]).high) / ((quoteongridhist)_istockearninghisthashtable[tikcerid]).close;
            //    ((quoteongrid)_istockearninghashtable[tikcerid]).gap_from_low = ((float)price - ((quoteongridhist)_istockearninghisthashtable[tikcerid]).low) / ((quoteongridhist)_istockearninghisthashtable[tikcerid]).close;
            //}
        }

    }