我使用Mvvm light(wpf45)。
我想在XAML中添加EventToCommand,我使用它
xmlns:cmd ="http://www.galasoft.ch/mvvmlight"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
但不要添加EventToCommand
<Button>
<i:Interaction.Triggers>
<i:EventTrigger EventName="Click">
<cmd:EventToCommand/>
</i:EventTrigger>
</i:Interaction.Triggers>
</Button>
我在
<cmd:EventToCommand/>
中遇到错误 最佳答案
使用此参考,
xmlns:cmd="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras.WPF4"
您可以使用EventToCommand类。
希望它对您有所帮助:)
关于wpf - 如何在XAML中添加EventToCommand,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17647574/