This might be a stupid question (I'm new to Silverlight!), but if I develop a .NET DLL with methods, can my Silverlight Out-of-browser app call and use this DLL and its methods if it is provided in the IsolatedStorage area of my Silverlight OOB install? Or does all code have to be contained in the Silverlight package?
Thanks!
How to: Use Automation in Trusted Applications
Related
I have a wpf application which I want to host on windows app store. I am thinking of using the desktop bridge to convert WPF to UWP without code changes. However, is it possible to make use of .net native compilation while using the desktop bridge approach in visual studio 2017???
No, this is not possible today for your WPF code - even with the Desktop Bridge. You can only do it for regular UWP projects that are targeting the .NET Core for UWP runtime.
The WebAuthenticationBroker scheme in Windows Store apps is not bad. What would be the equivalent for WP8 and WPF? It would be nice to write once and use a similar system on each platform. Is DotNetOpenAuth still recommended?
I have build a WebAuthenticationBroker for WP7 (which would work ofcourse for WP8 too)
Inside the wrapper I've build for AzureMobileServices for WP7.
I haven't migrated it to a standalone project, it is part of a .Net wrapper i've build.
Let me know if it helps!
Watch Option (2) for Login here:
https://github.com/zaxy78/azure-mobile-wp7-sdk#login-to-azure-mobile-services
How to use non-Silverlight DLL's in Silverlight applications? I cannot reference them in my Silverlight application, but I can in the Web projects which runs the Silverlight app. Is there a way for my Silverlight app to somehow use the DLL in the Web project?
Silverlight uses a subset of the CLR called the CoreCLR. You will need to recompile your CLR assemblies against the CoreCLR to use them in Silverlight.
I am new to Silverlight.
My questions are as follows
I know that Silverlight works with windows OS and Machintosh OS. But does it works with Linux/Unix?
If I run my Silverlight application on a server and access it through a client over the web, does the client need to have a Silverlight plug-in or its installer
With repect to the above point, what happens if I access the same Silverlight application through an Iframe from a normal HTML without having the Silverlight plug-in.
Links to your answers will be appreciated
Moonlight is an option in linux.. and yes you can run silverlight apps in linux http://www.go-mono.com/moonlight/
you will host you app on web server. and of course it will require silverlight plug-in to be installed on it in order to run the application on client.
no silverlight plugin means you can't run silverlight apps.. if you have plugin installed you can even run it in iframe.
Conclusion: in simple words silverlight app is nothing but follows the same requirements like Flash.
Regards.
I'm building a Silverlight application with Prism, and we'd like to use NInject. I've downloaded ninject-contrib to use their NInject bootstrapper, but it doesn't appear to build a Silverlight assembly. I compiled it myself to Silverlight, but it crashes Visual Studio.
Has anyone already ported ninject-contrib to Silverlight successfully?
You shouldn't have to use ninject-contrib. There is a download available for Silverlight. You can find it here. Let me know if this isn't what you are looking for, but if you would just like to use Ninject for dependency injection in a Silverlight app, this should be all you need.