I can't get rid of a XAML designer error.
<
UserControl
x:Class
=
"MenuItemBinding.SomeUserControl"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
>
<
Grid
>
<
telerik:RadMenu
>
<
telerik:RadMenuItem
Header
=
"Hello World"
Command
=
"{Binding HelloWorld}"
/>
</
telerik:RadMenu
>
</
Grid
>
</
UserControl
>
The 'Command="{Binding' part has a green underline with the tooltip "The property "Command" does not have an accessible setter".
Observations:
- Only happens in x64 (x86 doesn't show this error).
- Seems to only happen with RadMenuItem although I have not check all cases.
- It happens regardless where I place the RadMenuItem in the XAML.
- The application still works fine even though the XAML designer is stuck to "Invalid Markup"
How do I get rid of this error?