Declined
Last Updated: 17 Nov 2021 11:30 by ADMIN

1. RadImageEditor with ZoomToCursor enable.

2.Apply ZoomOut function until render width/height less than view width/height

result => Image zoom at center of viewport, not zoom at cursor position.

Declined
Last Updated: 20 Mar 2020 13:26 by ADMIN
Created by: Froggie
Comments: 3
Category: ImageEditor
Type: Feature Request
1

Please add a property to disable the zoom witch CTRL+MouseWheel. Maybe something like IsMouseWheelZoomEnabled with a defaut value of true.

There are already other properties like IsPanningEnabled or ZoomToCursor.

The currently known solution is:

private void imageEditor_PreviewMouseWheel(object sender, MouseWheelEventArgs e)
        {
            if (Keyboard.IsKeyDown(Key.LeftCtrl) || Keyboard.IsKeyDown(Key.RightCtrl))
            {
                e.Handled = true;
            }
        }

Declined
Last Updated: 21 Sep 2018 15:35 by ADMIN
Created by: Mi
Comments: 1
Category: ImageEditor
Type: Bug Report
1
I'm currently interessted in the new features of ImageEditor. But when I want to use it I don't want the write code, I just want to use the Sample Browser and try it out and see if it fits my needs. But the current version of Sample Browser does'nt support the new features out of the box! This is annoying.
Declined
Last Updated: 15 May 2017 06:24 by ADMIN