SetBinding没有为PropertyChanged事件注册
本文关键字:事件 注册 PropertyChanged SetBinding | 更新日期: 2023-09-27 18:04:24
在我正在开发的一个应用程序中,我以编程方式创建了几个具有不同数据源的frameworkelement。不幸的是,数据绑定失败了。
我设法把这个问题提炼成下面的程序:
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Data;
namespace TestBinding
{
public class BindingSource : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}
protected bool SetField<T>(ref T field, T value, [CallerMemberName] string propertyName = null)
{
if (EqualityComparer<T>.Default.Equals(field, value)) return false;
field = value;
OnPropertyChanged(propertyName);
return true;
}
private string _text = "Initial Text";
public string Text
{
get { return _text; }
set { SetField(ref _text, value); }
}
}
public sealed partial class MainPage : Page
{
BindingSource bs = new BindingSource();
public MainPage()
{
this.InitializeComponent();
TextBlock tb = new TextBlock();
tb.HorizontalAlignment = HorizontalAlignment.Center;
tb.VerticalAlignment = VerticalAlignment.Center;
tb.FontSize = 36;
Binding bind = new Binding() { Source = bs.Text, Mode=BindingMode.OneWay, UpdateSourceTrigger=UpdateSourceTrigger.PropertyChanged };
tb.SetBinding(TextBlock.TextProperty, bind);
Patergrid.Children.Add(tb);
}
private void ClickText1(object sender, RoutedEventArgs e)
{
bs.Text = "First text button clicked!";
}
private void ClickText2(object sender, RoutedEventArgs e)
{
bs.Text = "Second text button stroked!";
}
}
}
这里是xaml:
<Page
x:Class="TestBinding.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:TestBinding"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid x:Name="Patergrid" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Content="Text 1" Margin="25" HorizontalAlignment="Center" Click="ClickText1" />
<Button Content="Text 2" Margin="25" HorizontalAlignment="Center" Click="ClickText2" />
</StackPanel>
</Grid>
</Page>
当属性被更改时,通过逐步执行代码,我看到PropertyChanged事件没有订阅者。
为什么SetBinding不注册PropertyChanged事件?
你想要这样:
Binding bind = new Binding()
{
Source = bs,
Path = new PropertyPath("Text"),
Mode = BindingMode.TwoWay,
UpdateSourceTrigger = UpdateSourceTrigger.PropertyChanged
};
这里似乎有两个问题:
- 你发布的代码试图使用
bs.Text
属性返回的string
对象,这不是一个可观察的绑定源。绑定系统足够灵活,可以复制一次值,但之后,它就没有办法知道对象已经改变了(即使它可以& help;并且string
是不可变类型,所以对象无论如何都不会改变)。
相反,您想要绑定到BindingSource
对象本身作为源,使用Text
属性作为路径。
- 另外,将
BindingMode.OneWay
与UpdateSourceTrigger
的任何特定设置结合起来是没有意义的。当绑定模式是单向的,源永远不会更新,所以不管触发器是什么。
使用BindingMode.TwoWay
将允许将TextBlock.Text
属性的更改复制回源。
UpdateSourceTrigger
。TextBlock
无论如何都不是用户可编辑的,所以也许您确实打算将绑定设置为单向的,而只是将UpdateSourceTrigger
的无关初始化从其他地方遗留下来。从你的问题中很难知道哪个是适合你需求的正确实现。