Completed
Last Updated: 15 Jan 2019 06:58 by ADMIN
Martin Ivanov
Created on: 26 Nov 2018 13:08
Category: OutlookBar
Type: Bug Report
2
OutlookBar: Initially all items are rendered in the minimized area when IsContentPreserved is set to True
This happens  whether there is available space in the active area are not. All items are rendered in the minimized area.

To work this around you can set the IsContentPreserved property after the control is loaded.
private void FavouritesBar_Loaded(object sender, RoutedEventArgs e)
{
    Dispatcher.BeginInvoke(new Action(() =>
    {
        this.FavouritesBar.IsContentPreserved = true;
    }), (DispatcherPriority)3);
}


The fix for this issue will be available with the next LIB (version 2018.3.1224) expected on Monday, December 24.
0 comments