Hello,
After migration from 18.2.7 to 18.2.13 the dxBarManager main menu animation is slower and has strange display during the animation (using slide or unfold).
Here is a video that shows the issue.
Thanks for your help.
Regards
Sylvain
[Attachment removed by DevExpress]
Hello Sylvain,
Thank you for sharing your video. I have reproduce this difference between the latest version of our controls and 18.2.7. It may take us some time to examine this scenario.
The reason is this code :
procedure TdxBarSubMenuControl.WMEraseBkgnd(var Message: TWMEraseBkgnd);
begin
if HasBackground then
FillBackground(Message.DC, ClientRect, ToolbarBrush, clNone, True);
Message.Result := 1;
end;
Hello,
May I make the content of this ticket visible to other visitors of our site? We have found a solution, so it may be useful to them.
I can remove your attached video if necessary.
Yes please, remove vidéo before making it public.
Does the fix consists of commenting the 2 lines :
if HasBackground then
FillBackground(Message.DC, ClientRect, ToolbarBrush, clNone, True);
?
Thanks.
No. It uses the IsAnimationRunning method:
procedure TdxBarSubMenuControl.WMEraseBkgnd(var Message: TWMEraseBkgnd); begin if HasBackground and not IsAnimationRunning then FillBackground(Message.DC, ClientRect, ToolbarBrush, clNone, True); Message.Result := 1; end;