Advanced Forum Search Results
-
Exactly what the subject says...
I've got a Silverlight project that retrieves more assemblies from the web server and loads them at run-time when needed. After looking around the web for a while I found a few articles/posts saying how Silverlight localisation is kind of broken so you need to implement a couple of workarounds that I ...
-
UpdateLayout does nothing :(
I've had a little play and tried to add the content to a new TabItem then add that TabItem to the TabControl with the following code:
void webClient_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
// Debug information
((TabItem)tabs.SelectedItem).Content = ...
-
This thread explains exactly what I need to do. Looking at SilverlightDesktop.net makes me realise how similar my project is... but I just can't get it working.
I can get the WebClient object to retrieve the assembly and feed the stream into an AssemblyPart object's Load method. The assembly is loaded correctly and stored in the Assembly ...
-
It's just one problem after another at the moment, heh.
Ok! Now I'm trying to serialise a programmatically generated UserControl (and its content controls) with a XamlWriter, which I think should work. However, since the UserControl was created at web service creation time and the UserControl is being accessed on a ...
-
That looks like it'd be helpful
Any chance there is a XamlWriter class that allows me to convert a programmatically generated UserControl into XAML? Then I could use the two to serialise and deserialise the object tree.
Cheers
-
Sorry, maybe I wasn't clear enough with my explaination of what I'm trying to do.
I need to add new Controls to an already running Silverlight application. However, the Silverlight application won't know in advance what this is until it contacts the web service. Unfortunately, I can't use XAML for this as ...
-
Howdy, I am hoping someone can tell how to do this if there is a way, or at least put on me the correct track to an alternative solution.
I have looked around and I am fearing this may be a dead-end based on a lot of other information that I've read, but hey... this is programming and anything is possible (although maybe highly improbable ...