View property - bind twice
问题 Is it possible to bind the same property of the control more than once? To example: <Popup IsOpen="{Binding Path=(local:ListViewBehavior.IsColumnHeaderClicked), RelativeSource={RelativeSource FindAncestor, AncestorType=GridViewColumnHeader}}" ... As you can see Popup.IsOpen is bound to attached property. I'd like to bind it to ViewModel IsPopupOpened , but have no idea how. Trying @Arhiman answer without much success: <Popup.IsOpen> <MultiBinding Converter="{local:MultiBindingConverter}">