Advanced Forum Search Results
-
I'm not sure I understand what you want, you mention loading xaml dynamically and also databinding to an xml data source.
For the latter I suggest you take a look at scott's guthrie digg tutorial, where he loads an XML using a webclient, and then with LINQ to XML uses it to populate a grid. The link is the ...
-
sorry, didnt mean to be "ugly", only to point out another source for help since you were becoming "nervous" (do notice the "also")
-
Have you implemented INotifyPropertyChanged in your object?
Could you share the sources?
-
I have two custom controls, A, B. They both inherit from ContentControl.
When I try to do A.Content = B; programmatically I get an exception. But the following xaml works <A>
<B>
<..valid xaml../>
</B>
</A>
I get the following exception,
System.ArgumentException was unhandled by user ...
-
other threads report a similar error message in conversion scenarios, but related to breaking changes derived from the usage of ContentPresenter type,
http://silverlight.net/forums/p/47483/129471.aspx
-
It seems you are trying to implement some sort of value, label pattern. Selecting value, showing label. I'm not sure I would implement it using a textbox and a combobox, in the way you are trying to do it.
Are both controls editable, what if I change the combo? Why two lists of strings and not one list of a Datatype with two ...
-
It doesn't seem to be a silverlight issue, If I were you I'd also post this question in a Data Services forum :)
-
Have you tried defining a getter for the NumberFormat property?
-
I'm not exactly sure what you refer by pages, you mean user controls?
I think what you mean to implement is called an update progress control, where you show some image or animation between server invocations.
Server operations invocations are async, so you should make a control visible when you invoke the ...
-
Yep, one way to do it is providing a link in the silveright app to a url, where the server writes the expected html, csv, text/whatever, response. The data must be visible in the server, which in your case seems to be.