I have a problem with my Commands. When I start the application I have a datagrid. Everytime the selectedObjects in this grid are changing I am calling the RaiseCanExecuteChanged-method. This is working properly. I am not sure why this is happening. I am calling the RaiseCanExecuteChanged-method to ensure, that the databinding is correct at the time. Before I did that the CanExecute-Method was only called once at the beginning and never again. It seems to me, that the databinding at the point when I call RaiseCanExecuteChanged is not set up properly. But Why?
<Button Content="Aufsplitten"
CommandParameter="{Binding RegionContext.Value.SelectedEntities}"
Command="{Binding Source={StaticResource DialogCommands}, Path=ShowSplitbuchungDialog}"
Style="{DynamicResource ToolBarSplitButtonItemStyle}" ContentTemplate="{DynamicResource ToolBarSplitButtonContentTemplate}" /> Has anybody a suggestion? |
↧
Command RaiseCanExecuteChanged-Problem
↧