views:

107

answers:

1

Hi, Based on the sample from http://msdn.microsoft.com/en-us/library/ms771725.aspx which is for WPF. I wanted same sample for silverlight as my requiremnts are same. but i get "AG_E_PARSER_BAD_PROPERTY_VALUE" poiting to in my XAML (FYI: xmlns:dat="clr-namespace:System.Windows.Data;assembly=System.Windows.Data").

Please help me in acheving the same.

Thanks in advance Kishan

A: 

There is not a direct 1-to-1 match between WPF and Silverlight nor the XAML used in those technologies. The error you are getting implies that the XAML is trying to set a property that either doesn't exist or doesn't support the value being applied to it.

To track this down, you'll need to look into the differences between the version of Silverlight you are using and the version of WPF that you are porting from. Just googling or binging gives quite a few links regarding this.

Jeff Yates