I have a silverlight 3 application that is required to call a web service to display some data. the web service is hosted on a remote machine.
I have a datatemplate for a listbox stored in the ResourceDictionary. The template contains a button which when clicked should pass the listbox item to a seperate listbox
I parse an xml results from a webservice using linq : XElement items = XElement.Parse(e.Result); MyListBox.ItemsSource = from item in items.Descendants(\"node\")
Short Question: If I have a Silverlight application built in SL3 can I detect at runtime if the client is using SL4 and use the Cursors.NESW that is only available in SL4?
I\'m using a DataGrid, which datasource is exported to Excel. 开发者_JAVA百科 I\'d like to shape the excel doc according to the current sorting of the DataGrid (which column, and which order).
Does Visual Studio 2010\'s Silverlight support ArrayList? If yes then how to use it, if not then why?开发者_JAVA百科
I obtain d开发者_高级运维ata written in several languages from database and show it in silverlight datagrid, but all the non-latin symbols (e.g. Russian, French, German) is displayed as \'?\'. How can
fo开发者_StackOverflow社区reach (UIElement el in GridBoard.Children.ToList()) { if (el is Ellipse)
I just discovered a very strange behaviour. I have a class with a string property. In the setter of this property I compare the old value with the new value first and only change property if the value
I have a Silverlight application that allows you to write with the mouse like a paint开发者_StackOverflow中文版.