Deep Zoom Rotation
Is it possible to do rotations in Silverlight Deep Zoom? I'd like the animation to be fast and as seamless as possible. In other words can I rotate the Deep Zoom area, while keeping the Deep Zoom effect? ...
Is it possible to do rotations in Silverlight Deep Zoom? I'd like the animation to be fast and as seamless as possible. In other words can I rotate the Deep Zoom area, while keeping the Deep Zoom effect? ...
I've got a single Silverlight app that I'd like to display in a grid. The way the Silverlight app displays its content is dependent on the unique ID of the record in each grid row. Unfortunately, the XAP file is re-downloaded for each row in the grid. With a size of 700KB, this really impacts performance. Is it possible to download the X...
I don't see a lot of value for Isolated Storage except to maybe cache temporarily some images or code locally. Being that you only get 1MB I don't see much value in it even for this. Saving settings in Isolated Storage doesn't make a lot of sense since the user could access your silverlight application from another browser on a different...
I have two combo boxes on a SL page. When Combo 1 updates, a service is called and populates Combo 2. On the first call, 3 results are returned. When the combo box is expanded, you can see all 3 options. On the second call, 4 results are returned. When the combo box is expanded, you can see 3 options, with a vertical scroll bar. If I...
When the user closes the browser that hosts my Silverlight 2 Application I need to call a web service that would log the user out. I am aware of the Application_Exit event, however when I call my service in that event nothing happens. I presume that the connection to my service is already closed by then. Is there another event that I s...
So considering that Silverlight has a nice subset of the .net framework, you would think that it wouldn't be very difficult to play audio in reverse, right? Well no. I can't even find a good place to start. It doesn't seem like the MediaElement has the ability to play audio in reverse. Does anyone have ANY CLUE how this can be done? Wou...
Have written all the code in a silverlight class library (dll) and linked this same library to my web app and silverlight app, is there a way to avoid the "Compiler Error Message: CS0433" or do I have to create a separate dll for the web app? Error mostly occurs when XElement is called... ...
How do you embed a flash video in silverlight, if the source file is provided? ...
I am trying to create some reusable components in Silverlight2. The difficulty comes when my components are using templates/styles that are shared with other components. From what I know, in silverlight you can add the style/template in the component itself (not good enough due to duplicate styles) or in the main app file (this does n...
I'm looking for something similar to the VB6 / .Net Winforms "Browser Control", that let's you show a browser inside your application. I don't want to just render a page, I want it to be a fully-functional browser, in which people can click links, will run Javascript, etc. In essence, what I want is an IFrame, only that it runs inside a...
Didn't know how to phrase the question better but basically I have a usercontrol that I dynamically add into another usercontrol. The child usercontrol has a set of images and basically I need to know if they have fully loaded inside the parent usercontrol since I need their dimentions for a method (not just height and width). Is there ...
Hi All, I am making a 3D cube using kit3D.this cube is generated at run time.I wanted to know whether i will be able to add deep zoom o this dynamically generated 3D cube.The entire cube is ultimately an image and this is loaded altogather at a time.or is there any other way where in I can get the deep zoom effect??? Thanks ...
I have created an application in silverlight 3 beta. I am trying to access a dataset from Silverlight enabled WCF. I have created the WCF. I have added its reference to the silverlight app, but the ServiceReferences.ClientConfig file shows error "ServiceReference1.ArrayOfXElement not declared" in the code. The code is as follows: Parti...
I'm fetching data (images, 200-400kb) from WCF service to Silverlight client and notice that the Silverlight stops for a fraction of second every time such message arrive. It's not really serious but the animation stops for a while and the whole user experience is ruined. Question time: 1) Do you think it would be beneficial to use Web...
Hi, I have a Silverlight application in witch i can create presentation slides(like in PowerPoint), and i whant to save this slides(XAML and .cs files) in database or somwhere else, where i can be able to load and to use them. Regard, Andrei. ...
I have reasonably limited data to move between silverlight and a WCF service. So I have set up some datacontracts. I was hoping to be able to use the same classes to use for some limited data validation on the client side, without needing the overhead of DTOs and stuff. I have a contract something like this: [DataContract] class MyObje...
Hi! I'm trying to use RhinoMock for mocking out a wcf service. Say I have the following service: [OperationContract] List<User> SearchUsers(UserSearchFilter filter); Adding this service with Visual Studio will generate a proxy, and that proxy has a Interface like: public interface ResourceService { System.IAsyncResult ...
I'm getting ready to develop my first Silverlight app. It is going to be primarily used by my church for data input but also will need to generate at least one report, ideally in Excel but XML/XSLT is not outside the realm... It will be Internet facing and will talk to a SQL Server 2008 db for which I will be creating a web service hos...
This is a complex question, because there are a lot of moving parts. My apologies in advance. I'm trying to write a Silverlight control that hosts a Flash camera and microphone (since Silverlight doesn't support these things natively, worse luck). I've written a short little Flex application ("WLocalWebCam.swf") which handles the came...
Silverlight is case sensitive for query string parameters so the following code would return false with "callid=5" string callId; if (System.Windows.Browser.HtmlPage.Document.QueryString.TryGetValue("callId", out callId)) { .... } Microsoft defends the decision by citing the www.w3.org spec, but I think it leads to a less friendly exp...