WPF Image Visibility Binding in XAML

后端 未结 2 538
野的像风
野的像风 2021-01-21 17:28

I’ve got a little problem binding an image to a Radiobuttion. I only want to bind it via XAML an what I did is this.. I createad a Stackpanel with 5 radiobutton in it..

2条回答
  •  渐次进展
    2021-01-21 18:16

    Two things wrong here. First, you need to assign a Name to the RadioButton you want to use as binding source and use that for the binding's ElementName property.

    
    

    Then your binding also needs a converter from bool to Visibility. You could use WPF's BooleanToVisibilityConverter:

    
        
    radia
    
    
    

提交回复
热议问题