silverlight-5.0

Where is Silverlight 5 Developer runtime?

≡放荡痞女 提交于 2021-02-18 08:28:14
问题 On our web server I'm trying to install WCF RIA V1 SP2. When I try to install, it prompts me to install "Silverlight 5 Developer Runtime" first. I have already installed "Silverlight 5 Runtime" (Not developer) and Silverlight 5 SDK on the server. So I am searching for Silverlight 5 Developer Runtime, and I could not find any link to download it on Microsoft Web Site. On Stackoverflow, there are similar questions and links are provided. But those links are direct download link, and some are

Application works with fiddler ON and doesn't works without fiddler?

末鹿安然 提交于 2021-02-09 10:50:37
问题 I have a silverlight application it makes HTTPS request, it works fine when I am tracing the application with fiddler ON, But it throws Remote server not found error when I don't have fiddler running 回答1: I ran into this recently, in Fiddler Options->HTTPS I had 'ignore server certificate errors' checked. Unchecked that and Fiddler displayed a certificate error. Ended up adding the code mentioned here http://social.msdn.microsoft.com/Forums/en-US/ncl/thread/43a933b8-e2b1-40a7-ac23

Marshal.PtrToStructure in Silverlight

拟墨画扇 提交于 2020-01-25 10:43:46
问题 I got a Silverlight 5 assignment,but I struck in half way.Let me explain. My Code which works good in Windows Form (.Net framework 4) [DllImport("LiteSDK.dll", CharSet = CharSet.Ansi, EntryPoint = "GetAllUserInfo")] public static extern int GetAllUserInfo(int handle, IntPtr userHdr, ref int numOfUser); public struct BS2UserHdr { public enum ENUM { DS_MAX_NAME_LEN = 48, DS_MAX_PASSWORD_LEN = 16, DS_MIN_PASSWORD_LEN = 4, DS_TEMPLATE_SIZE = 384, DS_FACE_TEMPLATE_SIZE = 2284, MAX_FINGER = 10, MAX

No XAML binding debugging with breakpoints in Visual Studio 2012 (RTM, on Windows 8 RTM)?

蹲街弑〆低调 提交于 2020-01-23 01:18:26
问题 After upgrading my Silverlight 5 solution to Visual Studio 2012 (RTM), and then updating to Windows 8 (RTM), I noticed that when you set a breakpoint in XAML, you get the following tooltip in debug mode: The breakpoint will not currently be hit. Symbol not found: System.Xml.Xsl.Runtime.XmlQueryRuntime.OnCurrentNodeChanged2. I then tried to set a breakpoint in the XAML of a Windows Store App test project, and then of a WPF application, but I got the exact same tooltip. I tried to repair Visual

SimpleIoc - can it provide new instance each time required?

半腔热情 提交于 2020-01-19 01:31:46
问题 So far as I understand, SimpleIoc uses GetInstance method to retrieve an instance of a class that is registered. If the instance doesnt exist, it will create it. However, this instance is cached and always retrieved, which mimics the singleton pattern. My thinking is that there is no need to keep an instance of ViewModel in a memory if there is a small possibility that this ViewModel will be needed twice, so I would like to create new instance of it each time that is needed. If we have are

Unzip a zip file in silverlight

非 Y 不嫁゛ 提交于 2020-01-17 14:02:10
问题 I am trying to develop code to unzip file from the zip file in Silverlight 5. The files are in a directory within the zip file. I translated this code I found elsewhere from c# to VB since we are a VB shop. It is failing on the fourth line "Object reference not set to an instance of an object.". I realize now that the problem is that the third line is expecting a relative uri and I am passing it a file, but I don't know how to fix this. Can you tell me what is wrong with this code. I will

MS Blend preview Designer Catastrophic failure

扶醉桌前 提交于 2020-01-16 08:25:10
问题 I know this kind of problem must be posted on microsoft support forums, so did I , but still didn't get answer. maybe someone here may know what causes this problem. So.. i have strange problem with blend for silverlight 5. I created new blank new project , everytime i try to add control (button, or textbox or something else), I' getting that error exception. here is screenshot: If i leave control Content property blank string "" error disappears. here is list of related software installed on

Updating live tiles for windows phone 8 periodically

拜拜、爱过 提交于 2020-01-15 05:35:08
问题 I need to update my application's tile periodically with the count the amount of inbox items. Anyone can give me a reference or relevant link to a example or tutorial? I get my data from a webservice. I went on google, and all the examples is on button click. I need one that does this automatically every few minutes/hours? This is for the windows phone 8 start screen of the phone. thanks in advance! 回答1: This is probably the best tutorial I have seen for live tiles in wp8: http://www

EF5 Code First and RIA Services Silverlight “Object reference not set to an instance of an object” error building client

坚强是说给别人听的谎言 提交于 2020-01-13 10:05:02
问题 I am working on setting up a new project using Code First for entity framework 5 in silverlight using RIA services. I have created a test project due to some issues I have encountered and will post the code below. Namely, I get an 'Object reference not set to an instance of an object' error anytime I attempt to build the silverlight client project which should generate the client proxy classes. Just to be clear, this error is not while running or debugging the application, but when building

EF5 Code First and RIA Services Silverlight “Object reference not set to an instance of an object” error building client

点点圈 提交于 2020-01-13 10:04:26
问题 I am working on setting up a new project using Code First for entity framework 5 in silverlight using RIA services. I have created a test project due to some issues I have encountered and will post the code below. Namely, I get an 'Object reference not set to an instance of an object' error anytime I attempt to build the silverlight client project which should generate the client proxy classes. Just to be clear, this error is not while running or debugging the application, but when building