Completed
Last Updated: 09 Sep 2016 07:27 by ADMIN
ADMIN
Petar Mladenov
Created on: 13 Nov 2013 11:06
Category: Diagram
Type: Bug Report
0
Diagram: When DiagramToolBox's ItemsSource is set/changed runtime, no items are shown in the gallery
DiagramToolBox ItemsSource is set runtime. Selected Index is set to 0. This displays no items. Items are displayed on the next user selection in the ToolBox.
The workaround is to surrond the setting of SelectedIndex with Dispatcher.

   Dispatcher.BeginInvoke(new Action(()=>
            this.tBox.SelectedIndex = 0), DispatcherPriority.Loaded);



Available in R3 2016 Release
0 comments