How to control the Visibility of a textbox with radio button \"IsChecked\" property?
I have a Two textbox\'s let say txtbox1 and txtbox2 and I want to bind the visib
Yes, you can use the built-in BooleanToVisibilityConverter.
<Window.Resources> <BooleanToVisibilityConverter x:Key="b2v" /> </Window.Resources> ... <TextBox Visibility="{Binding IsChecked,ElementName=radioBtn,Converter={StaticResource b2v}}" />