Debug the attached project and execute the Action from the Tools category:
C#using System;
using DevExpress.ExpressApp;
using DevExpress.ExpressApp.Actions;
namespace T499468.Module.Win.Controllers {
public class T499468 : WindowController {
public T499468() {
var popupWindowShowAction = new PopupWindowShowAction(this, "T499468", "Tools");
popupWindowShowAction.CustomizePopupWindowParams += popupWindowShowAction1_CustomizePopupWindowParams;
}
private void popupWindowShowAction1_CustomizePopupWindowParams(object sender, CustomizePopupWindowParamsEventArgs e) {
throw new Exception("T499468");
}
}
}
This is specific to the debug mode only; everything operates correctly when running in Release mode without the attached debugger.