Skip to main content
Home Forums Silverlight Programming Programming with .NET - General Newbie questions
3 replies. Latest Post by notig on July 6, 2009.
(0)
notig
Member
1 points
9 Posts
07-02-2009 7:03 PM |
Just to let you know this might be a recurring thread here where I have questions... I am an amateur programmer... I know only a little and I am beginning to learn silverlight.
Here is my first question though. I am following the code in a book and it told me to download this app called kaxaml... which tests xaml code as you type it. However I ran into a problem...... the parser is giving me errors for this line:
<Matrix M11="1" M12="0" OffsetX="0" M21="0" M22="1" OffsetY="0" /> </Matrix.Transform.Matrix>
it says "AG_E_Parser_property_not_found"
Update 1: Well I just tried this same code in visual studio with a silverlight app project.. and the code worked fine.. no errors or warnings.. nothing. I wonder if it is something kaxaml specific?
TomBeeby
Participant
1151 points
188 Posts
07-02-2009 9:03 PM |
EDIT: ignore
SLMonster
299 points
65 Posts
07-03-2009 12:43 AM |
the '.' is not required between </Matrix.Transform.Matrix>
Use is like
--MaheshPlease click 'Mark as answer' if this helps you
07-06-2009 2:37 AM |
Thanks for the help btw I must have missed that but it worked.