Следуйте до этого вопроса.
По-видимому, по какой-то причине после явного задания свойства Parent.Child
(либо внутри конструктора, либо явно вне конструктора), когда яустановите свойство Child.Trigger
объекта Parent.Child
, объект Parent.Child
устанавливается снова.Это можно наблюдать, нарушая метод _OnChildChanged
, определенный в статическом конструкторе.Во втором случае его вызова вы можете видеть, что e.OldValue
не равно нулю и что оно совпадает с e.NewValue
.
WHY - это свойство Child
устанавливаемой Parent
еще раз при установке свойства Trigger
?
В соответствии с обязательным минимальным, Полный и проверяемый пример :
using System;
using System.Collections.Generic;
using System.Windows;
using System.Windows.Media.Animation;
namespace MCVE {
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class Program {
[STAThread]
public static int Main( ) {
Parent p = new Parent( );
p.Child.Trigger = new object( );
return 0;
}
}
public abstract class Base : Animatable {
public static readonly DependencyProperty TriggerProperty;
static Base( ) =>
TriggerProperty = DependencyProperty.Register(
"Trigger", typeof( object ), typeof( Base) );
public object Trigger {
get => this.GetValue( TriggerProperty );
set => this.SetValue( TriggerProperty, value );
}
}
public class Parent : Base {
public static readonly DependencyProperty ChildProperty;
static Parent( ) {
ChildProperty = DependencyProperty.Register(
"Child", typeof( Child ), typeof( Parent ),
new PropertyMetadata( null as Child, _OnChildChanged ) );
void _OnChildChanged(
DependencyObject sender,
DependencyPropertyChangedEventArgs e ) =>
Console.WriteLine( "Child Changed!" );
}
public Parent( ) : base( ) =>
this.Child = new Child( );
public Child Child {
get => this.GetValue( ChildProperty ) as Child;
set => this.SetValue( ChildProperty, value );
}
protected override Freezable CreateInstanceCore( ) => new Parent( );
}
public class Child : Base {
public Child( ) : base( ) { }
protected override Freezable CreateInstanceCore( ) => new Child( );
}
}
Воспроизвести:
- Создать проект WPF.Target .Net 4.7.2.
- Выберите
App.xaml
- Под
Properties
, измените Build Action
на Page
- Вставьте код в
App.xaml.cs
.Перезаписать ВСЕ.