using System.Windows; namespace HKW.WPF.Converters; /// /// 值转换器基础 /// public abstract class ConverterBase : DependencyObject { /// /// 未设置值 /// public static readonly object UnsetValue = DependencyProperty.UnsetValue; }