0

当我的视图需要 LogoStation 的值时,它返回 null,因为我的程序尚未执行 LoadStation_Completed。

我希望我的程序等待 LoadStation_Completed 在继续之前执行。

谢谢

public class Infos
{
    #region propriétés

    private DataServiceCollection<SyndicObject> _infosStation;
    public DataServiceCollection<SyndicObject> InfosStation
    {
        get
        {
            return _infosStation;
        }
        set
        {
            _infosStation = value;
        }
    }

    #endregion

    string nameStation;
    public event PropertyChangedEventHandler PropertyChanged;

    public void NotifyPropertyChanged(string propertyName)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this,
                new PropertyChangedEventArgs(propertyName));
        }
    }

    private ImageSource _logoStation;
    public ImageSource LogoStation
    {
        get
        {
            return _logoStation;
        }
        set
        {
            _logoStation = value;
            NotifyPropertyChanged("LogoStation");
        }
    }

    public Infos(string station)
    {
        nameStation = station;
        getInfos();
    }

    public void getInfos()
    {
        SyndicationContext service = new SyndicationContext(new Uri("http://test/817bee9d-faf4-4680-9d05-e41c2c90ae5a/"));

        IQueryable<SyndicObject> requete = (from objectSki in service.Objects
                                           where objectSki.NOMSTATION == nameStation
                                           select objectSki);

        Deployment.Current.Dispatcher.BeginInvoke(() =>
        {
            InfosStation = new DataServiceCollection<SyndicObject>();
            InfosStation.LoadCompleted += new EventHandler<LoadCompletedEventArgs>(InfoStation_LoadCompleted);   
            InfosStation.LoadAsync(requete);
        }
        );
    }

    void InfoStation_LoadCompleted(object sender, LoadCompletedEventArgs e)
    {
        LogoStation = new BitmapImage(new Uri(@"http://test/upload/" + InfosStation[0].LOGO, UriKind.Absolute));
    }
}
4

1 回答 1

0

通过使用您正在使用的属性设置器NotifyPropertyChanged(正确地)告诉绑定到LogoStation它的 UI 已更新。这应该意味着 UI 最初不会显示任何内容,然后在加载完成后显示图像。

在没有看到您的视图代码的情况下,您在这里看起来是正确的 - 除了您的Infos继承自INotifyPropertyChanged. 这意味着该事件永远不会被发送。

更新你的类定义,你应该很高兴。

于 2012-05-04T07:39:02.063 回答