EditOperation.ShowProgressor property doesn't work. I set it to false but progress dialog is shown anyway. I saw your code with dotPeek and came to this awful workaround:
var editOperationType = typeof(EditOperation);
var progressorProperty = editOperationType.GetProperty("CancelableProgressor", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic);
if (progressorProperty != null)
progressorProperty.SetValue(operation, CancelableProgressor.None);
Can you fix EditOperation.ShowProgressor property logic?
Solved! Go to Solution.
Thank you for pointing this out, this has been fixed (for the next release of Pro).
Thank you for pointing this out, this has been fixed (for the next release of Pro).
OK, it is fixed in 2.0.