-
I would like to add charts to a Silverlight application. Can I just add an assembly reference and namespaces and then manually enter the code? Here are the XAML namespace lines:
xmlns:charting="clr-namespace:Microsoft.Windows.Controls.DataVisualization.Charting;assembly=Microsoft.Windows.Controls.DataVisualization"...
2009-11-11 21:27:24 UTC in Eclipse Tools for Microsoft Silverlight
-
I found references to things missing in System.Xml in these two links, but no detailed discussion. I solved my problem by using XDocument (in System.Linq) instead of XmlDocument.
http://forums.silverlight.net/forums/p/113200/255119.aspx
http://stackoverflow.com/questions/1021709/how-to-use-xdocument-class-in-silverlight-project-c.
2009-11-11 15:45:05 UTC in Eclipse Tools for Microsoft Silverlight
-
Yves, I think you're right -- it's a Silverlight bug. Others in the forums mention that XmlDocument is missing. I wonder how the example writers get it to run. So I'm using XDocument, which works. Thanks for your help.
2009-11-11 01:03:37 UTC in Eclipse Tools for Microsoft Silverlight
-
Yves --
The C# code references XmlDocument; the code has the "using System.Xml;" directive; the project References include System.Xml. System.Xml.dll is in the Silverlight/v2.0/Reference Assemblies directory. Yet I get the "name not found" compile-time error. If I comment-out the XmlDocument line the application compiles and runs.
I think it is an Eclipse4sl problem rather than a...
2009-11-10 05:03:10 UTC in Eclipse Tools for Microsoft Silverlight
-
If I reference XmlDocument in the Page.xaml.cs file I get the error "The type or namespace name 'XmlDocument' could not be found (are you missing a using directive or an assembly reference?)"
I have a using System.Xml directive in the file, and System.Xml is in my list of References for the project. Why can't the name be found?.
2009-11-09 22:00:59 UTC in Eclipse Tools for Microsoft Silverlight
-
SOLVED: my clientaccesspolicy.xml was wrong.
2009-11-09 21:49:00 UTC in Eclipse Tools for Microsoft Silverlight
-
I put Console.WriteLine(message); in Page.xaml.cs, but I see no output. Where does the output go? Is there another command that will output a line of text?.
2009-11-08 04:09:24 UTC in Eclipse Tools for Microsoft Silverlight
-
I have a flex app which gets data from a servlet, using a HTTPService tag. I am redoing the client in Silverlight. How can I get data from the servlet, without making any changes to the server?.
2009-07-23 16:16:23 UTC in Eclipse Tools for Microsoft Silverlight