Hi,
Is the Disposed property that is generated in by the Guidence Package really correct
/// <summary>
/// Returns true if this object has had the Dispose method called.
/// </summary>
public bool Disposed
{
get { return _presenter != null && _WPFUIElementAdapter != null; }
}
Shouldn't it be
public bool Disposed
{
get { return _presenter == null && _WPFUIElementAdapter == null; }
}
Ie the View is disposed if the Presenter and WPFUIElementAdapter is null