silverlight-3.0

Silverlight interacting with peripheral device

I am interested in creating a Silverlight application. One of my requirements is to communicate with peripheral devices connected to the clients. What is the best way to meet this requirement. I would like to stay away from ActiveX and use possibly Java. Writing a Silverlight application using Java to communicate with the client peri...

Differences in developer experience between Mac and Windows versions of the Silverlight 3 runtime?

After last Friday's announcement, I'm just getting around to reading about the Silverlight 3 release. One of the first pages I visited was the Overview page, where it states, near the top of the page: Currently there are two runtimes available for users to experience Silverlight content. Windows Runtime - Mac Runtime B...

Can you install Silverlight 3 Tools on Server 2008 (64bit)

I have been able to install 'VS2008 SP1' and 'VS2008 Tools for Silverlight' on my Windows Server 2008 development machine, but I have not been able to install the MSI for 'Silverlight Toolkit July 2009'. The install fails with the following: "The system administrator has set policies to prevent this installation" I am a local admin on...

Silverlight 3: How to store PathGeometry in a resource library

I'm having isues trying to access a PathGeometry resource in a Resource Library in a silverlight 3 app Ive created a resource file called Geo.xaml in my app.xaml i link to this file <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="Components/Resources/Geo.x...

TabControlRegionAdapter bindings in the tab header are broken under silverlight 3.0

This used to work fine under SL3 beta, but after I upgraded to SL3 RTM, the functionality stopped working. In order to reproduce, just open and compile the ViewInjectionComposition solution in Quick starts. the tab header that used to display "Current Projects", now is empty. has anyone else encountered the same problem? ...

How to move Controls Like Grid or Stack panels as Carouse on click of buttonl in Silverlight.

I have one popup. In that popup i have three steps. All data for that three steps are in one XAML page in three different grids . i want to move that three grid one by one on click of Next button with anymation. How can i do it with silverlight 3.0 ...

Date AND Time picker control for Silverlight

I'd like to have a date AND time picker for my Silverlight application. AFAIK there are date and time controls in the SDK and the toolkit but they pick either a date OR a time. I'd like to have the same kind of control that's available in WinForms where I can pick a date AND time at the same time. Cheer. ...

ExecutionEngineException on an HttpDuplexBinding webservice call

I've been struggling with a webservice that throws an ExecutionEngineException for the past day. I finally worked out that the Silverlight client doesn't like IEnumerable<> nor IList<> nor List<> as the return type. MyObject[] is fine though. I managed to reproduce it in a sample solution: Service description: [ServiceContract] ...

Is the watermarkedtextbox in silverlight 3

I have an old demo project I am trying to dust off to run in Silverlight 3 and it cracks around the "Watermarkedtextbox" element. Anyone know how to get that back, or do I have to come up with another "cool" effect to get the water-mark effect? ...

Silverlight .NET RIA Project Structure

I am starting a new Silverlight 3 RIA application. Historically when doing my web development I have a solution with the following project structure. Core - Generic and misc stuff. Model - Domain model in nHibernate Services - Business logic, services and repositories Web - Web using MVC With my new project in Silverlight RIA it by d...

Targetting silverlight v2

Hi, Now that I have installed Silverlight 3, I seem unable to build a Silverlight application for Silverlight 2. I have set my objects minRuntimeVersion to 2.0.31005.0, however users who do not have silverlight 3 are still prompted to update. I'd prefer not to force this update on my users just yet, so is there a way to build Silverli...

DomainDataSource DataPager with silverlight 3 DataGrid & .Net RIA Services

I have a simple datagrid example with silverlight 3, and am populating it with the .NET ria services using a DomainDataSource along with a DataPager declaratively (nothing in the code-behind), and am experiencing this problem: The LoadSize is 30, and the Page size is 15, and when the page is loaded, the 1st and 2nd page appear correctly...

How to get activation events in composite children in Composite Application Guidance (PRISM)

I'm using the CAG and I've got some issues using the TabControl region. I worked out that by marking the view (and NOT the PresentationModel) as IActiveAware I can get an event when the view is activated/deactivated. That works well when the composite is simple and the TabItem is the view. However, in my case I've got a composite inside...

How to consume legacy business logic from a silverlight application?

Hello Everyone, I have an XBap system designed as a 3-layer application. The XBap client consumes the logic through a WCF Service using netTcpBinding. For easy of databinding and to be able to re use data validation built-in my business objects, I choosed to reference the business objects library from the xBap client instead of generat...

Is Silverlight isolated storage treated as permanent, or as a cache?

How persistent is isolated storage - does Silverlight treat it like a cache, deleting items when it needs more space, or only when the user or application request it? There also seems to be a wide variety of means to identify isolated storage - machine, application, domain, .... What I'm having trouble with is how these all relate to th...

Silverlight MVVM Prism and OpenFileDialog

I am currently working on a SilverLight 3 Application. I am using MVVM Pattern and Prism. I have everything working except the following item. On one of my views I have to use an OpenFileDialog. I attempted to do this in the ViewModel only to find out the security model of SilverLight prohibits it because it is only allowed to be use...

Silverlight Tutorial Part 6: Using User Controls to Implement Master/Detail Scenarios - How to gray out background?

I am working through the above Tutorial from ScottGu located here (http://weblogs.asp.net/scottgu/pages/silverlight-tutorial-part-6-using-user-controls-to-implement-master-detail-scenarios.aspx) and I am trying to figure how when the UserControl loads, the background page is 'grayed' out like that? Where is that code for that? I am try...

WCF + User credentials

Hello, I am working on a Silverlight v3 web app and I would like to secure access to the WCF service I am using to fetch my data. I currently have the WCF working just fine, but it doesn't require any user credentials. I'm not very experienced with this aspect of WCF, so my first idea was to add username and password parameters to eac...

How to refresh an ItemsSource with Silverlight 3?

I have a Silverlight 3 application which calls a traditional .NET Web Service (asmx) to get a list of records and then display it in a ListBox control (lstRecords.ItemsSource = myRecords). Any records could be added or updated or deleted at anytime and I would like my UI (records displayed in the ListBox control) to reflect the latest ch...

Does Silverlight 3 have access to local file system, Open Excel, and print reports?

I was wondering if Silverlight 3 can be used to create line of business applications where I can use file import/export facilities, read an xls file and open Excel, use a report tool like Crsytal Reports or Reporting Services or.. is WPF needed? I am new to Silverlight and WPF and want to decide if I can skip learning WPF. I know Silver...