silverlight

Silverlight datagrid row edit mode

I have a silverlight datagrid with a single editable column. This column has a combo box. To open the combo i have to click on the cell three times. Once to select the row, once to enter edit mode, and once to open the combo. IMHO this is really bad UX so I would like the row to enter edit mode when the user does a row click or mouse...

Passing parameters from silverlight to ASP.net

Hi, I've made a little game in silverlight that records users scores whilst they play. I decided it would be a lot better if I could implement a leaderboard, so I created a database in mySQL to store all the high scores along with names and dates. I have created some communications to the database in ASP.net. This works and I can simpl...

Silverlight behavior based on update of view model property

Hi, I'd like to have a Silverlight behavior that is triggered by a change to a property in the view model for my page. I can't figure out how to do this, however. So, I have a very simple view model: public class MyViewModel : INotifyPropertyChanged { private bool changingProperty; public bool ChangingProperty { ge...

Silverlight Dynamic Control not displaying

I have a simple control with code to add some paths. When I add my control to the control canvas, nothing shows up. To make sure that I wasn't crazy, I debugged through the code, and created a XAML equivalent and placed it off to the side of where my control should be showing up. I've tried changing the z-index and various Top/Left combi...

Binding ListBox to List in Silverilght not working

All, I have what i think is the simplest example possible of data binding in silverlight... but clearly even that is too complicated for me :) The XAML: <UserControl x:Class="SilverlightApplication1.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xam...

Embed one silverlight application into a Windows Forms Application

The title says it all. Can sombody help me? ...

Using Silverlight to display images from a network server.

I need to display images from a network server that generates tiff images. I would like to use silverlight 3 to display these images. I would like to stream the jpeg to the client. Is this possible if the images "live" on a server other than the web server? ...

Silverlight 4 and TCP Sockets

Most of the software we develop has to communicate with hardware devices in the local network using TCP/IP, UDP/IP or serial ports. This is probably the only reason we still target WPF instead of Silverlight for our UI. Socket support in Silverlight 2/3 is poor at best and way to limited. I've read the updated desktop mode in Silverligh...

Open File Instead of Save File in Silverlight SaveFileDialog

In Silverlight, there is the SaveFileDialog which allows you to save a file to the user's local machine. The dialog opens only allowing you to save the file. What I'm looking for is a way to open the file similar to the dialog you get when downloading a file through the browser. Aside from round-tripping the file to a server, or havin...

Tuning Silverlight's DataForm

I'm designing data-oriented application in Silverlight 3 and I'm wondering if is it worth using new DataForm control. It looks really awesome on PowerPoint slides but I have no idea how it is in real life. I need to achieve following behaviours: group model's fields to areas, for instance separating groups using horizontal lines or na...

DomainDataSource - filtering on the client

What is the best way to filter a DomainDataSource(DDS) on the client? My DDS connects to the WCF Ria Service and downloads a number of items. I want to show bits of this information in different controls. eg a few ItemsControls showing items from the DDS filtered by various values. I know I could create a new DDS for each control and fi...

Error message when trying to add a Service Reference.

I'm trying to add a service reference to my silverlight project from a file stored on my hosting server. When I put the link in I get the following error: The document at the url http://www.lloydp.co.uk/Test/WcfRectangleService.dll was not recognized as a known document type. The error message from each known type may help you fix the ...

ASP.NET MVC & Silverlight

Should an ASP.NET MVC Developer start to learn Silverlight either? ...

Silverlight and NuSoap

EDIT: After some research, I found the answer to the problem (at least it works for my particular situation). Instead of the register call noted down below, I am now using the following call: $soap->register( 'MyFunction', array('inputData' => 'xsd:string'), array('outputData' => 'xsd:stri...

Reverse Binding Information from a model

I hope i can explain this in few words, i m designing a generic framework and one of the things that came to my mind is there any way to know reverse binding information from a model property. For eg.given below Stock class public class Stock { public string Symbol { get;set; } } Now lets assume that symbol of above model is binded to...

Silverlight as front-end for business application

We are developing a new .NET based commercial application which will have a back-end running as a service on a Windows server (optionally Azure). For this, we are considering using Silverlight as the only front-end / GUI for accessing the application - primarily because this will allow for easy access from various client OS platforms. Us...

Live Audio Streaming alternatives *without* Flash, Silverlight...

What , if any, alternatives are there to Flash, Silverlight, and Java applets for streaming live media? ...

Get Notified of Silverlight Binding Errors?

So, lets say I write a binding in Silverlight that cannot be resolved. I get a message in the output window: "System.Windows.Data Error: BindingExpression path error: ...." Is there a way to get notified when this happens? Ultimately, I'd like to throw an exception or something. Is this somehow configurable? ...

Displaying ® symbol in Silverlight.

Folks! I am trying to display ® and superscript TM symbols in my silverlight app. I want to save the text containing the symbols in a resx file. Things i have tried: Copy paste the ® symbol from any document to resx file. ® symbol gets displayed in the resx file. But, when running the silverlight app, xamlparseexception ...

Stream Audio from Linux Server with Silverlight

I have a large catalog of audio on a Linux (CentOS 5) server that I would like to expose to an existing .NET web site. Is there any way to stream the media from the Linux server through my web site using Silverlight? If so, how would a person go about setting it up? Thanks in advance! ...