在 XAML 中,我有一个按钮已经绑定到它的可见性标记上的路径“HasWritePermission”。是否可以在同一个标签上添加另一条路径?假设我想根据某些逻辑完全隐藏按钮。
为了给出一些上下文,该按钮是一个删除按钮,如果给定列表为空,则该按钮不可见
看看多重绑定
<DataGridTextColumn.Binding>
<MultiBinding Converter="{Quire_UI_Value_Converters:DiscountConverter}" Mode="TwoWay" NotifyOnSourceUpdated="True" UpdateSourceTrigger="LostFocus">
<Binding Path="Discount_Taken_Value" Mode="TwoWay"/>
<Binding Path="Discount_Taken_Type" Mode="TwoWay"/>
</MultiBinding>
</DataGridTextColumn.Binding>