Completed
Last Updated: 13 Feb 2017 08:41 by ADMIN
ADMIN
Dinko | Tech Support Engineer
Created on: 08 Feb 2017 14:10
Category: ImageEditor
Type: Bug Report
0
ImageEditor: Setting IsPanningEnabled property to true before applying the template of RadImageEditor results in exception
As a workaround you can subscribe to the Loaded event of the control where you can set the IsPanningEnabled property.

private void ImageEditor_Loaded(object sender, System.Windows.RoutedEventArgs e)
  {
      this.imageEditor.IsPanningEnabled = true;
  }


Available in LIB version: 2017.1.213
0 comments