WPF: Stop Binding if a UI element is not visible

后端 未结 5 476
滥情空心
滥情空心 2021-02-05 06:16

Can I delay binding of a ui element if the element is not currently visible. Sometimes I have a form that has some hidden/minimised elements, I would like to not update them if

5条回答
  •  情书的邮戳
    2021-02-05 06:26

    The answer is no because the binding might be cause of making an element visible again. So if binding did not work on hidden controls it would not allow the binding to make it visible again.

提交回复
热议问题