ISettableNode.cs 318 B

123456789101112131415
  1. using Avalonia.Data;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Avalonia.Data.Core
  8. {
  9. interface ISettableNode
  10. {
  11. bool SetTargetValue(object value, BindingPriority priority);
  12. Type PropertyType { get; }
  13. }
  14. }