We started using Stimulsoft Reports with the winforms components. Now our main application will be migrated to WPF, but the reporting components should still be running by winforms (we did a lot of extensions in toolbar and menu). We have other components that still run with winforms.
When I start the Designer in dialog mode StiReport.Design(true) everything is working fine. But if I start the Designer non modal StiReport.Design(false), strange things with keyboard and menu happened.
Example 1: Deleting selected components by the DEL-Key is not working
Example 2: I open a menu entry in main menu, then I click on the desinger space or select a component, but the menu stays open
I tried this with an completely new WPF Application with a button on it. The click event contains the following basic code:
Code: Select all
StiReport stiReport = new StiReport();
stiReport.Design(false);
Thank you
Andreas