Rajat Tandon
Rajat Tandon

Reputation: 1

The property 'command' does not exist on the type 'Button'

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

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564413

You need to capitalize Command in your XAML:

<Button Command="{Binding SomeCommand}">

Upvotes: 2

Related Questions