private static void SetMouseCapturePoint(PaintDotNet.UI.FrameworkElement target, PointDouble value) { target.SetValue(MouseCapturePointPropertyKey, value); }
public static void SetIsEnabled(PaintDotNet.UI.FrameworkElement target, bool value) { target.SetValue(IsEnabledProperty, BooleanUtil.GetBoxed(value)); }
private static void SetIsPressed(PaintDotNet.UI.FrameworkElement target, bool value) { target.SetValue(IsPressedPropertyKey, BooleanUtil.GetBoxed(value)); }
public static void SetAllowDrag(PaintDotNet.UI.FrameworkElement target, bool value) { target.SetValue(AllowDragProperty, BooleanUtil.GetBoxed(value)); }