Reputation: 1
Error 1 The property 'command' does not exist on the type 'Button' in the XML namespace 'http://schemas.microsoft.com/winfx/2006/xaml/presentation'. C:\Users\Admin\documents\visual studio 2010\Projects\MvvmLight2\Sample\MainPage.xaml 33 21 Sample
Upvotes: 0
Views: 169
Reputation: 564413
You need to capitalize Command
in your XAML:
<Button Command="{Binding SomeCommand}">
Upvotes: 2