silverlight-3.0

How to create Simple HLSL Silverlight filter for blending/playing with/mixing 2 images?

How to create Simple HLSL Silverlight filter for blending/playing with/mixing 2 images? I need some working example of a filter which would take as an input 2 images\objects and return 1 image - result of some calculations. I want to bring to Silverlight blend modes!) ...

How to evade Silverlight cross-domain security law?

how to evade Silverlight cross-domain security law? This point is one that I need to go round Cross-domain calls - Browser or Client - Allowed when it is configured per client access policy file hosted on server. Any ways? Articles? Libs? ...

Unit Testing RIA Services

Hi All, I have a domain services class that runs on the server in a silverlight application. I.e. the class is defined like this, public class UpgradeToolDomainService : DomainService { ... } I am using RIA services which means that on the client it generates code which looks like this, public sealed partial class UpgradeToolDomainC...

How to read Metadata values from Silverlight Client with RIA Services

I have an RIA Services Silverlight 3.0 app using an EF model. In the model metadata I've included several Display Name properties that I'd like to use when referring to the model on the client-side (in TextBoxes, etc.. .) I'm using reflection now to get the properties of the model on the client so that if the model changes over time, I ...

Problem running silverlight app in VS 2010 beta

In Visual Studio 2010 Beta 2 I created a new navigation Silverlight application. Without changing anything I hit F5 to run the application. It comes up with the following error: ‘Unhandled error in Silverlight Application Code: 2104’. Does anyone know how I can fix this issue? ...

SketchFlow prototyping font not displaying

I'm using SketchFlow for the first time, and am confused as to why my text isn't showing up in the "Buxton Sketch" font it's supposed to (see image). I just did a repair installation, and it didn't make a difference. In the Text properties, I don't see "Buxton Sketch" as an option, either. I'd appreciate any help. UPDATE Everything look...

HttpWebRequest.EndGetRequestStream issue in Silverlight

I am using HTTPWebRequest to post data to a webserver in Silver light 3.0, here is my code public void MakePostRequest() { // Create a new HttpWebRequest object. HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.mywebsite.com/somepage.php"); // Set the ContentType prop...

Hosted Silverlight LOB Application - Authentication Models

Our application is built in VB6 and delivered in a SaaS model via Citrix. Our subscribers must first authenticate to the Citrix Login Portal (AD) which gives them access to their applications. Each application has its own local user repository so except for where we've implemented some single sign on strategies, the user must enter a s...

Silverlight 3 MVVM List Item + Child Window selection

I have a Collection of Places that is displayed in View Model ListBox Items. Each Place(List Item) has a set of six selections that open a different child window for each that display the information branch for the Place. An example is a group(List) of Towns(List Items) that have six streets(Child Windows) that have different addresse...

Using DataAnnotations for validation in MVVM

Hi, I've discovered the new data annotation features of SL3 and I'm using them for user input validation. I've got inputs like these: <dataInput:Label Target="{Binding ElementName=inputName}"/> <TextBox x:Name="inputName" Text="{Binding RequestDemoData.Name, Mode=TwoWay, Valid...

Debugging Silverlight and Silverlight Unit Tests

I am having trouble debugging silverlight, and the silverlight unit tests. Lets first talk about debugging silverlight. My silverlight project has the 'silverlight' debugger checked in the project properties so I don't really understand. Sometimes it will debug OK and I can put breakpoints in my view model classes, and other times not. ...

Silverlight Datagrid RowEditEnded

I have a SL DataGrid that has two columns. I need to be able to catch any change to the a row and save it into an undo stack. I setup the event RowEditEnded and tried to add to the undo stack there. The problem I'm running into is that I have no way to get the new value from RowEditEnded. If the column is a ComboBox then it updates t...

Selected item in Silverlight DataGrid

Hi All, I have some XAML like this (silverlight 3.0), <data:DataGrid Margin="0,20,0,0" ItemsSource="{Binding Path=Upgrades}" = AutoGenerateColumns="False" VerticalAlignment="Center" AlternatingRowBackground="AliceBlue" HorizontalAlignment="Left" SelectionMode="Single"> <data:DataGrid.RowStyle> <Style TargetType=...

Tutorials about the Silverlight Navigation Application template?

Silverlight's Navigation Application template seems promising, however, I can't seem to find any tutorials (particularly video tutorials). Whatever I did find was from the beta and is inconsistent with the released version. Has anyone seen any non-beta tutorials (particularly video)? ...

Ajax Style Loading Animation in Silverlight

I am building a Silverlight application around the new Navigation framework. Due to the nature of the application, there will be quite a bit of waiting around. To that end, I'd like to add an Ajax-style loading animation to all my navigation pages. In other words, while I go and get the data for any of the pages, I want to be showing...

Open folder dialog in Silverlight?

Hi, Does anybody knows how to have an open folder dialog in Silverlight? Any third party controls? I know there is a OpenFileDialog but this is not what I'm looking for. I want a dialog for folders only. Thanks. ...

Someone know example of silverlight implementation with repositories?

I'm trying to implement a Silverlight infrastructure with Prism, Ado.Net Dataservices and Repository Patterns but having some problems, what I want to know is, if there's out there an working example of this. ...

Silverlight 3DRotate + Drag

Hello, I am trying to implement drag and rotate(Left to right or right to left) on a UIelement similar to this one: http://www.motorola.com/Consumers/US-EN/Consumer-Product-and-Services/Mobile-Phones/Motorola-Karma-QA1-US-EN So when the user holds down the left mouse button on the UIelement and starts to move the mouse to the left I w...

Out of browser feature of Silverlight 3.0

Why and when somebody would take out the Silverlight application out of browser and run? As this is feature provided in Silverlight 3. ...

silverlight - communicate between 2 view models in MVVM using commands

hi all , i am working on MVVM and using commanding in silverlight(DelegateEvent and ICommand) I want something like this ,(say) i have 2 usercontrols , parent and child . Parent is hosting the child , both have thier own viewmodels . On parent i have a button and it executes a simple command , on execute of that command i want to upd...