_parameter.WeakSubscribe(() => _parameter.Value, HandleValueChanged);


我像上面一样使用WeakSubscribe。

我的情况是,当值更改时,系统将添加一个新参数,而当前参数将退订该事件。

我找到了this question,但是它不起作用。

最佳答案

如果您使用以下方式订阅:

 _token = thing.WeakSubscribe(() => parameter.Value, HandleValueChanged);


那么您可以使用以下方式退订:

 _token.Dispose();
 _token = null;


这将调用https://github.com/MvvmCross/MvvmCross/blob/v3.1/CrossCore/Cirrious.CrossCore/WeakSubscription/MvxWeakEventSubscription.cs#L91中的Dispose代码:

    protected virtual void Dispose(bool disposing)
    {
        if (disposing)
        {
            RemoveEventHandler();
        }
    }

    private void RemoveEventHandler()
    {
        if (!_subscribed)
            return;

        var source = (TSource) _sourceReference.Target;
        if (source != null)
        {
            _sourceEventInfo.GetRemoveMethod().Invoke(source, new object[] {CreateEventHandler()});
            _subscribed = false;
        }
    }

09-25 18:30