我偶然发现了以下问题.我有一个复选框,其IsChecked属性绑定到我的MainWindow类中的CLR属性.这是源代码.
代码隐藏(MainWindow.xaml.cs):
namespace MenuItemBindingTest {
public partial class MainWindow : Window, INotifyPropertyChanged {
private bool m_backedVariable = false;
public bool IsPressAndHoldEnabled {
get { return this.m_backedVariable; }
set {
this.m_backedVariable = value;
OnPropertyChanged("IsPressAndHoldEnabled");
MessageBox.Show("Item changed: " + this.m_backedVariable);
}
}
public MainWindow() {
InitializeComponent();
this.m_checkbox.DataContext = this;
}
public event PropertyChangedEventHandler PropertyChanged;
protected void OnPropertyChanged(string propertyName) {
if (this.PropertyChanged != null) {
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
}
}
XAML代码(MainWindow.xaml):
<Window x:Class="MenuItemBindingTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Binding Problem Test" Width="525" Height="350">
<DockPanel>
<CheckBox x:Name="m_checkbox"
IsChecked="{Binding IsPressAndHoldEnabled}"
HorizontalAlignment="Center" VerticalAlignment="Center"
Content="Is Press and Hold enabled"/>
</DockPanel>
</Window>
现在的问题是,当用户选中或取消选中复选框时,永远不会调用属性IsPressAndHoldEnabled的set访问器(即消息框永不显示).但是,当我将属性重命名为其他东西时,它确实有效 – 比如IsPressAndHoldEnabled2.
我现在的问题是:为什么我不能使用IsPressAndHoldEnabled作为我的财产的名称?这与属性Stylus.IsPressAndHoldEnabled存在有什么关系吗?
最佳答案 有趣.我没有答案为什么,但我有解决方法:
除非该类派生自FrameworkElement,否则将IsPressAndHoldEnabled属性分离到单独的ViewModel类是有效的.
此外,在同一个MainWindow类中从常规属性更改为依赖属性 – DP已更改了回调触发器.