Tagged Questions

Silverlight is Microsoft's cross-browser, cross platform plug-in for media experiences and rich interactive applications. Silverlight 3 was released July 9, 2009

learn more… | top users | synonyms (1)

14
votes
7answers
4k views

How to dismiss a popup in Silverlight when clicking outside of the control?

In my Silverlight UI, I have a button that when clicked pops up a control with some filtering parameters. I would like this control to hide itself when you click outside of it. In other words, it ...
14
votes
2answers
14k views

RIA Services: How can I create custom authentication?

I am working with the Silverlight RIA Services and I want to create custom authentication. This appears to be the only thing that has virtually no documentation (I've read through the entire ...
13
votes
8answers
11k views

Sync SelectedItems in a muliselect listbox with a collection in ViewModel

I have a multi-select listbox in a SL3 app using prism and I need a collection in my viewmodel that contains the currently selected items in the listbox. The viewmodel doesn't know anything about the ...
13
votes
3answers
9k views

What is the difference between WCF and the RIA Services Domain Service Class?

I'm just introducing myself to the basic differences between Silverlight 3 and it's predecessor. Looking at Domain Service Class within RIA services, the execution seems quite a bit simplified. Can ...
13
votes
26answers
2k views

What's your top feature request for Silverlight?

I'll take away the obvious one here: mic and webcam support. Other than that, if you ran the Silverlight team, what would your highest priority be for Silverlight v.Next? Disclaimer: If we get some ...
12
votes
5answers
538 views

Is there a way to serialize multiple XElements onto the same line?

I'm dealing with the dreaded <Run/> in Silverlight 3 and having to programmatically create a <TextBlock> and its inlines: Why dreaded? Because it doesn't work, I guess, the way you'd ...
12
votes
8answers
834 views

Is there a design pattern for dealing with large datasets over the internet?

I am looking for a design pattern that handles large data sets over the internet, and does periodic updating of these objects. I am developing an application that will display thousands of records in ...
11
votes
6answers
847 views

How to display images without taking up huge amounts of RAM

I'm working on a silverlight project where users get to create their own Collages. The problem When loading a bunch of images by using the BitmapImage class, Silverlight hogs up huge unreasonable ...
11
votes
2answers
811 views

Seeking Font Strategies for Silverlight Apps

As I'm working through an SL3/SL4 application, and starting to work with fonts, I'm finding a lack of documentation and best practices on font strategies. For example: Are there common fallback ...
11
votes
11answers
3k views

Best Silverlight Controls [closed]

Who provides the best 3rd party Silverlight controls for LOB applications? In the past I’ve used Infragistics for WinForm controls which were very good and they also provide good support. However, ...
10
votes
3answers
6k views

Silverlight, DataPager, RIA Services, and smart paging

I'm still trying to get my feet on the ground with Silverlight and RIA Services, and of course starting with some of the more "fun" stuff like grids and intelligent paging. I can connect to RIA ...
10
votes
1answer
2k views

Error when binding a Dependency Property on a custom Behavior

I am exploring the Silverlight attached behaviors mechanism in order to use the Model-View-ViewModel pattern within my Silverlight applications. To start with, I am trying to get a simple Hello World ...
9
votes
3answers
261 views

Silverlight Stability

I don't know if anyone can advise about this one. We have written and implemented a LOB Silverlight 3 application - which we are currently testing at a clients site. We have come across the problem, ...
9
votes
1answer
5k views

Access ResourceDictionary items programmatically

I have a Silverlight controls assembly, called "MySilverlightControls". Several folders down into that assembly i have a class which extends a grid column from a third party vendor, let's call it ...
9
votes
3answers
15k views

Invalid cross-thread access issue

I have two ViewModel classes : PersonViewModel and PersonSearchListViewModel. One of the fields PersonViewModel implements is a profile image that is downloaded via WCF(cached locally in isolated ...
9
votes
3answers
2k views

How to go back to “Base” state using VisualStateManager?

I know we can use VisualStateManager.GoToState(this,"SomeState1",true); to enter into SomeState1 , but now how to go back to the base state, like no state, the state where the control was loaded ...
9
votes
6answers
14k views

“Dialogs must be user-initiated.” with SaveFileDialog in Silverlight 3

I am working on a Silverlight 3 app with C#. I would like to allow the user to download an image from the Silverlight app. I am using SaveFileDialog to perform the file download task. The flow goes ...
9
votes
4answers
2k views

Best Practice For Location Of Styles In Silverlight

Where is the best place to put Style StaticResources? I have been putting the global and default styles in app.xaml and the page specific styles in page_name.xaml. Should every control have its own ...
9
votes
4answers
13k views

Silverlight child windows in MVVM pattern

I am trying to find the right way to get the data from a ChildWindow/popup using a MVVM pattern in Silverlight (3). For example: I have a main page with a data entry form and I want to open a popup ...
8
votes
1answer
612 views

Best way to pass image to server?

I have an SL3 application that needs to be able to pass an image to the server, and then the server will generate a PDF file with the image in it, and display it to the user. What I already have in ...
8
votes
4answers
5k views

How to define a DataTemplate in code?

How can I create dataTemplate in code (using C#) and then add control to that DataTemplate ? <data:DataGrid.RowDetailsTemplate> <DataTemplate> <Border> ...
8
votes
2answers
5k views

Silverlight (3.0): How to add cell padding to a Grid?

How to add easily a cell padding for a Grid in Silverlight? To set Margins for each cell looks very noisy. <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition ...
8
votes
8answers
2k views

Prevent Silverlight 3 from caching while debugging

I'm assuming the issue I'm having is related to caching. Code changes I make are not getting picked up when I debug. Most times I get served a previous version of the app. How do I prevent this from ...
8
votes
1answer
195 views

Can Silverlight play videos with transparency?

Can Silverlight play video with transparency? At least some tricky way for color keying with C# or HLSL? So if you know any way how to please post some info. If yes. What do I need? MSDN if ...
8
votes
3answers
1k views

Integrate Silverlight Unit Tests in TFS Build

We have been creating silverlight unit tests by creating a plain vanilla .net unit test project, removing all references except for the unittestframework one, and then adding references to the SL ...
8
votes
1answer
2k views

How do you set CacheMode on an element programatically?

Silverlight 3 introduced the CacheMode parameter on elements. Currently the only supported format is BitmapCache. In XAML this value can set as the following: <Image CacheMode="BitmapCache" ...
8
votes
7answers
15k views

Pass value of a field to Silverlight ConverterParameter

I'm writing my very first Silverlight app. I have a datagrid with a column that has two labels, for the labels, i am using an IValueConverter to conditionally format the data. The label's "Content" ...
8
votes
3answers
1k views

Silverlight XAML Attribute Definition Order Matters

I was working with the ComboBox control and couldn't get the SelectedItem to be set from the property on my viewmodel. Here is the control definition: <ComboBox x:Name="jobEmployee" ...
8
votes
6answers
9k views

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 ...
8
votes
9answers
587 views

Silverlight 3 released - Has the time come to take Silverlight seriously?

As an ASP.NET developer, I've been eyeing Silverlight from a distance for a while now. But I've been burned by jumping on the Microsoft bandwagon too early in the past when their projects get ...
8
votes
3answers
3k views

RIA Services vs ADO.NET Data Services

I'm currently in the process of creating a Silverlight 3 data driven application. To access the database, 2 common approaches are used: RIA Services and ADO.NET Data Services. Does anyone have any ...
8
votes
2answers
5k views

Combining .NET RIA Services and MVVM in Silverlight 3.0

When using .NET RIA Services and MVVM in Silverlight 3.0 is there a difference between the Metadata type from RIA Services and the ViewModel from the MVVM pattern? Are these the same thing or should ...
8
votes
6answers
5k views

Does Silverlight 3 Change the MVC vs. Silverlight question?

I'm starting a new project soon and investigating whether or not to use MVC, Silverlight or both. This question Silverlight vs. ASP.NET MVC was a good starting point. But looking over the SL3 beta, ...
7
votes
2answers
305 views

Bind a fill property in a path to a Foreground property from the ContentControl in a style

I have silverlight problem I'v used two days to fight: a template with a style controls a button. In the concrete button I have a canvas with paths as content. The problem is that I want the paths ...
7
votes
5answers
3k views

Using a Grid as the ItemsPanel for an ItemsControl in Silverlight 3

Is it possible to do something like this: <ListBox> <ListBox.ItemsPanel> <ItemsPanelTemplate> <Grid /> ...
7
votes
3answers
2k views

silverlight - communicate between 2 view models in MVVM using commands

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 ...
7
votes
2answers
5k views

Silverlight user authentication

I am currently developing a Silverlight 3 app that needs some sort of user authentication, because the data pulled from a WCF service is user specific. Target audience is the regular Internet - so ...
7
votes
3answers
1k views

Silverlight 3.0 out of browser versus WPF/Windows App - Summary of differences?

With the new Silverlight 3.0 feature that allows the components to be hosted outside of the browser, our company is looking for details on the differences between this new feature and WPF Windows ...
7
votes
4answers
2k views

Silverlight 3 - Can I run Out-of-browser inside another application

The new Silverlight 3 beta includes the ability to run Out-of-Browser applications. The demos so far show this only inside a special frame. Does anyone know how I can run Siverlight 3 controls ...
6
votes
2answers
118 views

Can I have a ValueConverter in my ViewModel?

I have a combobox bound to a collection, so the user can select one of the items. So far, so good. The content of the combo box is driven by the item, but also by a value in my viewmodel. Imagine ...
6
votes
7answers
747 views

Debugging silverlight 3 in vs2008 after vs2010\silverlight 4 installed

I've installed vs2010 on my machine now it seems that I can't debug\run my silverlight 3 app in vs2008. The debug play button (F5) is grayed out. And when an exception is throw it says "Debugging ...
6
votes
3answers
4k views

How can I set the maxItemsInObjectGraph property programmatically from a Silverlight Application?

I have a Silverlight 3.0 application that is using a WCF service to communicate with the database, and when I have large amounts of data being returned from the service methods I get Service Not Found ...
6
votes
3answers
965 views

Is there no Label control in Silverlight?

I can't seem to find a Label control in Silverlight. I get compile errors if I put anywhere in my XAML.
6
votes
4answers
2k views

How to Debug XAML Parsing Errors in Silverlight?

I run into the following issue semi-regularly: I make changes to XAML or some resources used by it and when I go to load up the Silverlight project in debug mode it only gets as far as the spinning ...
6
votes
3answers
2k views

How to use Canvas as the ItemsPanel for an ItemsControl in Silverlight 3

I am trying to set the Canvas properties in an ItemsControl DataTemplate with Silverlight 3. According to this post, the only way of doing that is to set it using the ItemsContainerStyle for the ...
6
votes
4answers
2k views

Silverlight Issue with Firefox 3.6?

Recently I updated my firefox to 3.6 and the silver light app on my web app has weird behavior. No button click happens in the silverlight app, it just gives it the focus and if we 'TAB' around, we ...
6
votes
4answers
2k views

Pitfalls of (Mis)Using C# Iterators to Implement Coroutines

I am writing refactoring a Silverlight program to consumes a portion of its existing business logic from a WCF service. In doing so, I've run into the restriction in Silverlight 3 that only allows ...
6
votes
2answers
1k views

Silverlight DataGrid Updating SelectedItem from code

When I update a datagrid SelectedItem from code (via a bound object in a ViewModel), how to I get the visual grid to highlight the newly selected item? Thanks, Mark UPDATE: This is still an issue ...
6
votes
4answers
202 views

Now that Silverlight 3 has been out for a month

I haven't noticed any outcries of pain from the community, but then I haven't really seen much of anything as a result of the Silverlight 3 RTM. So... What are your impressions? For those that have ...
6
votes
6answers
7k views

How to make ChildWindow blocking

The ChildWindow is a modal window, but it does not block. Is there any way to make it blocking? I basically want a ShowDialog() method that will call ChildWindow.Show() but then not return until the ...

1 2 3 4 5 30