mirror of
https://github.com/LorisYounger/VPet.git
synced 2024-08-30 18:42:36 +00:00
15 lines
304 B
C#
15 lines
304 B
C#
using System.Windows;
|
|
|
|
namespace HKW.WPF.Converters;
|
|
|
|
/// <summary>
|
|
/// 值转换器基础
|
|
/// </summary>
|
|
public abstract class ConverterBase : DependencyObject
|
|
{
|
|
/// <summary>
|
|
/// 未设置值
|
|
/// </summary>
|
|
public static readonly object UnsetValue = DependencyProperty.UnsetValue;
|
|
}
|