You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following commit makes PdfPageItemsControl unstable: SetPagesVisibility and EnsureScrollBars do not behave properly in AOT dotnet8 (behaviour is not consistent over different builds...)
privatevoidOnLayoutUpdated(object?sender,EventArgse){LayoutUpdated-=OnLayoutUpdated;Dispatcher.UIThread.Post(()=>{EnsureScrollBars();// Ensure the pages visibility is set when OnApplyTemplate()// is not called, i.e. when a new document is opened but the// page has exactly the same dimension of the visible pageSetPagesVisibility();},DispatcherPriority.Loaded);}
is still unstable.
Switching to dotnet9 looks to fix the problem (difficult to assess as problem is not consistent)
The text was updated successfully, but these errors were encountered:
BobLd
changed the title
SetPagesVisibility and EnsureScrollBars issue with AOT
SetPagesVisibility and EnsureScrollBars issue
Nov 9, 2024
Following commit makes
PdfPageItemsControl
unstable:SetPagesVisibility
andEnsureScrollBars
do not behave properly in AOT dotnet8 (behaviour is not consistent over different builds...)26dd7d5
The attempt to fix the problem in
6bb558f
is still unstable.
Switching to dotnet9 looks to fix the problem (difficult to assess as problem is not consistent)
The text was updated successfully, but these errors were encountered: