namespace GFramework.Core.Abstractions.Property;
///
/// 可绑定属性接口,继承自只读可绑定属性接口,提供可读写的属性绑定功能
///
/// 属性值的类型
public interface IBindableProperty : IReadonlyBindableProperty
{
///
/// 获取或设置属性的值
///
new T Value { get; set; }
///
/// 设置属性值但不触发事件通知
///
/// 要设置的新值
void SetValueWithoutEvent(T newValue);
}