I have a Treeview that fills a entry form when an item is selected..
I also have a DataGrid that fills an entry with different data.
The user can move back and forth between the Datagrid and the Treeview.
I need to refill the entry form with the data from the Treeview when I click on the previous selected Item on the Treeview.
When I click on the previous selected Item the SelectedTreeItem does not get fired (Makes sense since it's the same item)
How can I force an event to be sent using MVVM?
Part of the treeview is below.
<syncfusion:TreeViewAdv Width="200" AllowMultiSelect="False"
SelectedTreeItem="{Binding SelectedTreeItem,Mode=OneWayToSource}"
AllowDragDrop="False" ItemsSource="{Binding ListProjects}"
AllowsColumnReorder="False" AnimationType="None" LineStrokeDashOffset="1"
ShowRootLines="True">