It's with WPF
With best regards
Gerhard
-----Ursprüngliche Nachricht-----
Von: nro...@googlegroups.com [mailto:nro...@googlegroups.com] Im Auftrag von
Rishi Oberoi
Gesendet: Sonntag, 13. Februar 2011 06:11
An: nRoute
Betreff: [nRoute] Re: OnLoaded (LifeCycle)
I also make this change in 'Application.cs'
public List<IApplicationService> ApplicationLifetimeObjects
{
get
{
if (_applicationLifetimeObjects == null)
{
_applicationLifetimeObjects = new
List<IApplicationService>();
if (!nRouteApplicationService.IsInitialized)
{
return _applicationLifetimeObjects;
}
}
if (_applicationLifetimeObjectsWrapper == null)
{
_applicationLifetimeObjectsWrapper =
new
ReadOnlyCollection<IApplicationService>(this._applicationLifetimeObjects);
}
return new
List<IApplicationService>(_applicationLifetimeObjectsWrapper);
}
}
It was suggested by some other member and it works really fine. The nasty
Ilist-errors I send you sometimes were gone now. So, if there is nothing
else which was influated by this change, maybe you can include it in the
next change set.
Thanks.
With best regards
Gerhard
-----Ursprüngliche Nachricht-----
Von: nro...@googlegroups.com [mailto:nro...@googlegroups.com] Im Auftrag von
Rishi Oberoi
Gesendet: Sonntag, 13. Februar 2011 06:11
An: nRoute
Betreff: [nRoute] Re: OnLoaded (LifeCycle)
This is with WPF or Silverlight (3/4) ?