Answers for "visibility bound to radio button wpf"

C#
0

visibility bound to radio button wpf

<Window.Resources>
    <BooleanToVisibilityConverter x:Key="b2v" />
</Window.Resources>
...
<TextBox Visibility="{Binding IsChecked,ElementName=radioBtn,Converter={StaticResource b2v}}" />
Posted by: Guest on September-15-2020

C# Answers by Framework

Browse Popular Code Answers by Language