プロパティを使用してのDelegateCommand
プロパティにバインドするViewModel があります。Button
Command
DelegateCommand
問題は、サンプル データがオブジェクトを気に入らないことです。またThe type "DelegateCommand" does not include any accessible constructors.
、唯一の公開されたプロパティはIsActive
プロパティです。
<local:MyViewModel xmlns:local="clr-namespace:MyNamespace"
xmlns:prism="http://www.codeplex.com/prism">
<local:MyViewModel.Age>47</local:MyViewModel.Age>
<local:MyViewModel.PurchaseAlcohalCommand>
<prism:DelegateCommand IsActive="True" />
</local:MyViewModel.PurchaseAlcohalCommand>
</local:MyViewModel>