silverlight-oob

Is it Possible To change the Title of the application in Out-of-Browser mode in silverlight

依然范特西╮ 提交于 2019-12-12 03:47:44
问题 I have a silverlight 4.0 application where I need to change the Window Title of the application after login to the application according to the User in the Out-of-Browser mode. Is it Possible ? I have gone through the following link http://www.codeproject.com/Articles/68955/Silverlight-4-How-Can-I-Create-a-Customized-OOB-Wi Thanks Chittaranjan 回答1: I don't believe it is possible in Silverlight 4. In Silverlight 5, it's very easy, provided you're running with elevated trust: App.Current

Can Silverlight Out-of-Browser app call .NET DLLs?

我是研究僧i 提交于 2019-12-11 07:29:23
问题 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! 回答1: How to: Use Automation in Trusted Applications 来源: https://stackoverflow.com/questions/4740832/can-silverlight-out-of-browser-app-call-net-dlls

Silverlight client-side database with LINQ

非 Y 不嫁゛ 提交于 2019-12-10 16:46:01
问题 I'm creating an out of browser silverlight app and would like to have a database in the client side. I've looked at sqlite but it seems that it does not work with silverlight. It would be great if I could use LINQ with it. I would prefer a free solution but payed is always an option. Any suggestion? Thank you 回答1: Those are some options: http://silverdb.codeplex.com/ http://siaqodb.com/ http://www.mcobject.com/silverlight-demo http://www.effiproz.com/product_sl.aspx 来源: https://stackoverflow

Calling Office Communicator via Silverlight Out of Browser

女生的网名这么多〃 提交于 2019-12-10 10:58:11
问题 I need to invoke office communicator to create a chat window and phone call directly from Silverlight when running out of browser. When running in browser I do this and it works pretty well: System.Windows.Browser.HtmlPage.Window.Eval(String.Format("window.open(\"sip:{0}\", target=\"_self\");", sip)); When running out of browser as far as I have gotten is to invoke the Communicator.UIAutomation via a dynamic but honestly I don't know what to do next. dynamic communicator = AutomationFactory

Calling Office Communicator via Silverlight Out of Browser

杀马特。学长 韩版系。学妹 提交于 2019-12-06 11:49:45
I need to invoke office communicator to create a chat window and phone call directly from Silverlight when running out of browser. When running in browser I do this and it works pretty well: System.Windows.Browser.HtmlPage.Window.Eval(String.Format("window.open(\"sip:{0}\", target=\"_self\");", sip)); When running out of browser as far as I have gotten is to invoke the Communicator.UIAutomation via a dynamic but honestly I don't know what to do next. dynamic communicator = AutomationFactory.CreateObject("Communicator.UIAutomation"); Anyone have any suggestions on how to make this work?

Silverlight 4 OOB with local data options

给你一囗甜甜゛ 提交于 2019-12-06 10:04:37
问题 Right now I have a Winform app with a SQL Server back end. The DAL is comprised of Linq to SQL. One of the complexities of this app is it's need to function offline. I have accomplished this by using Merge Replication to keep there local SQL Express instances in sync with a central SQL Server. I have some logic that detects there connection state and switches the contexts connection string appropriately. My question is thus, will this also work with Silverlight 4? In theory, I would detect

How exactly do OOB Silverlight applications work on Mac?

谁都会走 提交于 2019-12-05 23:47:59
问题 Silverlight page says that it won't work on all Mac browsers after March 2017, but the question about future of OOB Silverlight on Mac is simply unclear. So the question is, how do OOB apps work on Mac? Do they use Safari to run, and are supposed to stop to work after this March 2017? Do they run independently from the browser and will continue to work, even after browser support isn't available anymore? 回答1: According to this article a user is required to install the OOB version from the

Silverlight on Mac beyond 2016: Is Out Of Browser (OOB) an option?

坚强是说给别人听的谎言 提交于 2019-12-04 18:47:00
问题 The Get Silverlight page now shows Dec 31 2016 as the end of support for Silverlight in Safari. That seems to be unannounced news and it is unclear if it was set by Apple or Microsoft. The date matches the Firefox end of support for NPAPI. Q1: Could a Silverlight app continue to be viable (and installable) as an OOB app on the Mac beyond that? Or does the inevitable loss of broswer NPAPI support mean the complete end-of-the-line for Silverlight on Macs? The post here seems to offer some hope,

Disabling JavaScript errors in WebBrowser control in Silverlight

六眼飞鱼酱① 提交于 2019-12-04 17:52:04
I'm developing Silverlight OOB application and I need to show web pages in it - I would like to do it through out WebBrowser control, but during page load I get lots of MessageBoxes with JavaScript errors. Is there a way of hiding those MessageBoxes? In winform WebBrowser control there is ScriptErrorsSuppressed property that can be used, but in SL there isn't. I would be appreciated for any help. Try turning off script debugging in the internet explorers advanced settings. Ultimately the control uses MSHTML to deliver the rendering, which in turn gets many of it settings from IE. Today I've

Silverlight 4 OOB with local data options

喜夏-厌秋 提交于 2019-12-04 14:06:36
Right now I have a Winform app with a SQL Server back end. The DAL is comprised of Linq to SQL. One of the complexities of this app is it's need to function offline. I have accomplished this by using Merge Replication to keep there local SQL Express instances in sync with a central SQL Server. I have some logic that detects there connection state and switches the contexts connection string appropriately. My question is thus, will this also work with Silverlight 4? In theory, I would detect when they are offline and switch the connection appropriately. Thoughts? EDIT It seems this is, in fact,