我试图找出如何使用单选按钮和数据绑定启用和禁用文本框。看起来我应该能够将文本框IsEnabled绑定到布尔值并修改该值,但我无法让它工作。我想要几组单选按钮和文本框,所以我想要一个通用的方法来处理问题。我试图使用转换器,但因为我没有使用任何x:名称我不确定这些在这种情况下会有所帮助。我可以让他们启用/禁用单选按钮,但这不是我想要做的。我的代码主要显示了我为第一个文本框尝试的解决方案。
Xaml Code
<Grid>
<StackPanel>
<RadioButton GroupName="grp1" Content="Enable TextBox" IsEnabled="{Binding Bttn1, Mode=TwoWay}" IsChecked="{Binding Bttn1}" Checked="RadioButton_Checked" Unchecked="RadioButton_UnChecked" />
<RadioButton GroupName="grp1" Content="Disable TextBox" IsEnabled="{Binding Bttn2}" />
<TextBox IsEnabled="{Binding Txtbx1, Mode=TwoWay}" BindingGroup="{Binding grp1}" ></TextBox>
<RadioButton GroupName="grp2" Content="Enable TextBox" IsEnabled="{Binding Bttn3, Mode=TwoWay}" IsChecked="{Binding Bttn3}" Checked="RadioButton_Checked" Unchecked="RadioButton_UnChecked" />
<RadioButton GroupName="grp2" Content="Disable TextBox" IsEnabled="{Binding Bttn4}" />
<TextBox IsEnabled="{Binding Txtbx2, Mode=TwoWay}" BindingGroup="{Binding grp2}" ></TextBox>
</StackPanel>
</Grid>
ViewModel代码
private bool _bttn1;
private bool _bttn2;
private bool _bttn3;
private bool _bttn4;
private bool _txtbx1;
private bool _txtbx2;
public bool Bttn1
{
get
{
return(_bttn1);
}
set
{
_bttn1 = value;
_txtbx1 = false;
RaisePropertyChanged(Txtbx1.ToString());
}
}
public bool Bttn2
{
get
{
return (_bttn1);
}
set
{
_bttn1 = value;
_txtbx1 = false;
RaisePropertyChanged(Txtbx1.ToString());
}
}
public bool Txtbx1
{
get
{
return (_txtbx1);
}
set
{
_txtbx1 = false;
}
}
我还有下来
public event PropertyChangedEventHandler PropertyChanged;
protected void RaisePropertyChanged(string name)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(name));
}
}
private void RadioButton_Checked(object sender, RoutedEventArgs e)
{
Handle(sender as RadioButton);
}
private void RadioButton_UnChecked(object sender, RoutedEventArgs e)
{
Handle(sender as RadioButton);
}
void Handle(RadioButton radioButton)
{
bool flag = radioButton.IsChecked.Value;
this.Title = "IsChecked = " + flag.ToString();
}
public class RadioConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return !(bool)parameter;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
return !(bool)value ? parameter : null;
}
}
答案 0 :(得分:6)
如果您想要启用和禁用带有单选按钮的文本框,此解决方案可以正常工作:
<Grid>
<StackPanel>
<RadioButton x:Name="RB1" GroupName="grp1" Content="Enable TextBox" />
<RadioButton GroupName="grp1" Content="Disable TextBox" />
<TextBox IsEnabled="{Binding IsChecked, ElementName=RB1}" ></TextBox>
<RadioButton x:Name="RB2" GroupName="grp2" Content="Enable TextBox" />
<RadioButton GroupName="grp2" Content="Disable TextBox" />
<TextBox IsEnabled="{Binding IsChecked, ElementName=RB2}" ></TextBox>
</StackPanel>