Files

13 lines
260 B
C#
Raw Permalink Normal View History

using System.Windows;
namespace PCL.Core.Utils;
public static class WpfUtils
{
public static bool IsDependencyPropertySet(DependencyObject obj, DependencyProperty dp)
{
return obj.ReadLocalValue(dp) != DependencyProperty.UnsetValue;
}
}