Advanced Forum Search Results
-
I need the ability to deep clone objects under Silverlight!!
I am trying to replace our BinaryFormatter serialization with something capatible under Silverlight. I have read thru all the forums and have also researched all the possibilities using the DataContractSerializer. With the partial trust issue of Silverlight and the uncertainty of ...
-
Nick,
I found the link to the financial services demo that gave us the examples of loading dynamic xaml strings in this manner. Your group posted this example using Silverlight 2 (Beta 1).
http://www.financialdevelopers.com
Download the Silverlight2 (Beta 1) Retail Financial Services Demonstrator located half-way down on this page. If you look ...
-
Nick,
Rajeev is describing exactly how I am using the InitializeFromXaml() method. In my app, I have many individual xaml files in a folder (as my wrappers) that were marked as embedded resource strings, each with the appropriate event hookups, etc. Then, I had one common control source file with all the event handlers that loaded ...
-
I would like to vent some frustration too....
I've been working on an application where I had created a custom control with different skins using embedded xaml resources. By using InitializeFromXaml, I was able to have one common control file that handled all my events, but could create different skins by passing in a string name of the ...
-
What happen to the ability to reference non-silverlight class libraries? In the alpha, we were able to reference our .Net 3.5 class libraries from a silverlight control as long as we did not invoke any non-supported namespaces. Now, we are getting the error that we can no longer reference libraries that are not built ...
-
Why are you not supporting the entire Assembly class, but just select pieces of it? When pulling in our .NET calculation libraries into a SilverLight project, we were unable to perform a GetName() on the Assembly class, but it seemed to support most other properties and methods including the FullName property.
We use the BinaryFormatter to ...