将Button的可见性绑定到ViewModel中的bool值

将Button的可见性绑定到ViewModel中的bool值,第1张

将Button的可见性绑定到ViewModel中的bool值

假设

AdvancedFormat
bool
,则需要声明并使用
BooleanToVisibilityConverter

<!-- In your resources section of the XAML --><BooleanToVisibilityConverter x:Key="BoolToVis" /><!-- In your Button declaration --><Button Height="50" Width="50" Style="{StaticResource MyButtonStyle}" Command="{Binding SmallDisp}" CommandParameter="{Binding}" Cursor="Hand" Visibility="{Binding Path=AdvancedFormat, Converter={StaticResource BoolToVis}}"/>

请注意添加的内容

Converter={StaticResource BoolToVis}

在使用MVVM时,这是一种非常常见的模式。从理论上讲,您可以自己在ViewModel属性上进行转换(即,仅使属性本身成为type

Visibility
),但是我不愿意这样做,因为现在您 正在 关注关注点的分离。项的可见性实际上应该取决于View。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5567399.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存