所以我有一个ComboBox绑定到一个项目列表。 {A,B,C,D,E}
<ComboBox x:Name="cmbDMS" ItemsSource="{Binding Types}" SelectedValue="{Binding Type,Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Left" VerticalAlignment="top" Width="120" SelectionChanged="cmbDMS_SelectionChanged" />
也是一个TextBox。
<TextBox IsEnabled="{Binding isTypeB}" Grid.Row="6" Width="250" Margin="0,2" />
一旦ComboBox SelectedValue更改为B,我无法弄清楚如何更新TextBox isEnabled属性。一旦我退出并返回到视图中,它就会工作但我希望它是即时的。
感谢。
答案 0 :(得分:2)
我做了一个样本供你理解。 由于它更像是基于视图的东西,我建议使用转换器并在视图和转换器本身中包含代码。请参阅下面的代码。我测试了它,它在我的最后工作正常。
当您选择B时,文本框已启用,当选择更改为任何其他文本框时,文本框将被禁用。
XAML代码:
<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApplication1"
xmlns:viewModel="clr-namespace:WpfApplication1.ViewModel"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525" >
<Window.Resources>
<viewModel:TestConverter x:Key="TestConverter" />
</Window.Resources>
<Grid Margin="329,0,0,0">
<ComboBox x:Name="cmbDMS" HorizontalAlignment="Left" VerticalAlignment="top" Width="120" >
<ComboBoxItem Content="A"/>
<ComboBoxItem Content="B"/>
<ComboBoxItem Content="C"/>
<ComboBoxItem Content="D"/>
<ComboBoxItem Content="E"/>
</ComboBox>
<TextBox Grid.Row="6" Height="60" Width="250" Margin="0,2" IsEnabled="{Binding ElementName=cmbDMS, Path=Text, Converter={StaticResource TestConverter}}" />
</Grid>
</Window>
TestConverter.cs代码:
using System;
using System.Globalization;
using System.Windows.Data;
namespace WpfApplication1.ViewModel
{
public class TestConverter : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (value != null)
{
var si = value.ToString();
if (si.Equals("B"))
return true;
}
return false;
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
}
答案 1 :(得分:1)
过去我遇到了一些问题,绑定到SelectedValue
并且正确地引发了事件。除非您有明确的理由,否则我希望绑定到SelectedItem
我在此操作中发现的问题是,bool
对象的绑定不一定会通过更改SelectedItem
ComboBox
来更新
如果您希望将两者链接起来,一种简单的方法是在bool isTypeB
属性的setter中为"Type"
属性引发Property changed事件:
(因为我不知道&#34的类型; Type&#34;我会假设它是一个字符串):
public string Type
{
get{...}
set
{
//...set logic
RaisePropertyChanged(); //will notify when "Type" changes
RaisePropertyChanged("isTypeB"); //will notify that isTypeB is changed
}
}
...
public bool isTypeB => Type == "TypeB";
RaisePropertyChanged
的参考:
public event PropertyChangedEventHandler PropertyChanged;
public virtual void RaisePropertyChanged([CallerMemberName] string propertyName = "")
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
答案 2 :(得分:0)
如果您的Binding第一次有效,之后就没有了,那么您关于更改属性的通知可能无效。因此,请确保绑定到DependencyProperty属性,或者在setter中绑定PropertyChanged事件(INotifyPropertyChanged接口的成员)。