2026-08-08 14:07:56 +08:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|