ボタンがあります。datacontextとコマンドを使用すると、コマンドが機能しません。
<Button DataContext="{Binding horaires}" Style="{StaticResource RefreshAppBarButtonStyle}" AutomationProperties.Name="{Binding HomeAppBarTitle, Converter={StaticResource StringResourceConverter}}" Command="{Binding RefreshCommand}" ></Button>
datacontextを削除して名前を手動で設定すると、次のように機能します。
<Button Style="{StaticResource RefreshAppBarButtonStyle}" AutomationProperties.Name="Actualiser" Command="{Binding RefreshCommand}" ></Button>
何が問題になるのでしょうか?
よろしくお願いします