I have MDI WinForms application with ribbons. If application is maximized and user click on some tool (button in ribbon) to show message box, main application window 'jumps'.It seems that it does not matter whether mdi childs are there. If application is not maximized, everything looks good, no jumping occurs.
I've been looking for reason of such behaviour. After setting FormDisplayStyle to Standard, it was good. But we would like to have rounded main window style... I'm using WinXP SP3, IG 8.2 with latest hotfix. Is there any solution to this ? It it very annoying for us andour users.
Applying the latest hotfix solved this problem for me in both Windows XP and Windows Vista.
Daniel said:I'm using WinXP SP3, IG 8.2 with latest hotfix.
The latest hotfix has the build number 2022. The previous one had the build number 1011. Check the version of your Infragistics controls libraries: it should be 8.2.20082.2022
HTH,
Emanuel
Hi,
I have same version as you've mentioned (8.2.20082.2022). Is there some 'magic' property I should set ?
Daniel
I haven't changed anything else, but I can think of two things you could try:
1. set the main form WindowState property to Normal. In the class' contructor add an event listener for the Shown event on the main form, in which you set the WindowState property to Maximized. So, in short, set the WindowState property to Maximized at run-time and not at design time. I have found some issues regarding a form with ribbon that starts maximized.
2. it's a long shot, but: check in the build directory the version of the Infragistics control libraries. Maybe they were not updated. It may not be the case, but it's worth a look.
I have also Vers 8.2.20082.2022 but the problem unfortunately persist.
Also, make sure you have Copy Local and Specific Version set to False for your project references. If not, it may still try to use the old references even after installing the latest hotfix.
thanks !
You are right. I had the Specific Version of Toolbars set to True. Now it works fine.
Thx