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)

0
votes
1answer
12 views

Silverlight and Non-Public members

Is it possible somehow to access non-public properties in Silverlight? Maybe using reflection? I've tried following steps: Get class type Get property info by prop name prop.GetValue(obj, null) ...
0
votes
0answers
12 views

Accessing generic non-public member in Silverlight

How can I get value of generic non-public property in silverlight? I've tried this: var webDomainClient = (WebDomainClient<IConfigServiceContract>) DomainClient; var ...
0
votes
0answers
5 views

WebDomainClient ChannelFactory is inaccessible

I am using Silverlight 3 and RIA Services Beta November 2009. I was faced with issue connected to timeouts. When my server-side processing takes longer than a minute I get exception like "timeout ...
0
votes
1answer
29 views

WCF RIA Service timeout

I have context like that: [EnableClientAccess()] public class MyRiaService : LinqToEntitiesDomainService<EntityFrameworkContext> Using Silverlight client I am initiating heavy database ...
1
vote
2answers
41 views

Getting WCF RIA Serivce Timeout

I am running heavy wcf ria service operation and getting such error on client-side silverlight app: Uncaught Error: Unhandled Error occured in Silverlight Application: Submit operation failed. ...
0
votes
0answers
21 views

Windows Embedded XAML Rendering with OpenGL ES

We have rendering problems with the OpenGLES accelerated Silverlight on the Freescale iMX53 platform: The BSP comes with the environmental flag bsp_xrplugin_opengl=1, which configures the XAML ...
1
vote
0answers
44 views

displaying ms office files(doc,docx,xls,xlsx,ppt,pptx) in browser (IE)

iam bulding a asp.net application using asp.net c# in vs2010. my requirement is to display ms office files in browser. the requirement is such 'cause i need the user to only view the files and not ...
0
votes
1answer
19 views

Silverlight 3 Binding with a little change

Let's say I have class with Name property. I'd like to bind collection of objects of this class to Silverlight 3 ListBox. But I want to show items like that: "Some dynamic str " + Name (object ...
0
votes
0answers
14 views

Importing document in RadRichTextBoX IN SILVERLIGHT

I am using Richtextbox control. i exported the document in string as Function GenerateTxt() As String Dim xaml As New Telerik.Windows.Documents.FormatProviders.Html.HtmlFormatProvider ...
1
vote
0answers
27 views

How to make Div Visible of Aspx page, After a Radwindow pops Up

How to make Div Visible of Aspx page, After a Radwindow pops Up.. So that it looks like the light Box. I have embedded silver light Component in aspx page . And in silverlight Component there are ...
1
vote
2answers
37 views

Charting control options for Silverlight for Windows Embedded

I want to make a charting control for an embedded device using Silverlight for Windows Embedded. Currently i am planning to use line shape for drawing the graph. My question is if its a good ...
0
votes
0answers
23 views

Silverlight and embedded web pages

In a Silverlight application can you embed web pages in a similar manner such as iframes. I would load the pages through a proxy server so no cross domain issue should exist. Is there any known ...
0
votes
1answer
102 views

silverlight configured to use a proxy server

If I use silverlight on a web page, can it be configured so that any web requests within a silverlight app are routed through a proxy server even if the web browser is not configured to use a web ...
1
vote
0answers
127 views

Set Grid background color programmatically in Silverlight

I have a Data template <DataTemplate x:Key="ConnectorItemFactory"> <Button Style="{StaticResource TextOnlyActionTileButtonStyle}" Margin="0,0,5,0" ...
0
votes
0answers
44 views

Silverlight Datagrid's BeginEdit() function doesn't focus on the required cell when HTMLPage.Window.Alert is used

I have written a cellEditEnd event. When cell editing is ended, in the event handler code I am checking a condition if the edited text is more than 200 characters in length, the application should ...
1
vote
1answer
22 views

How to enable Stylus input and read the text and save it in a Windows 7 CE Application?

I have been working on a Windows 7 CE device. The platform uses Silverlight 3 for Windows Embedded and Expression Blend 3 . The code is to be done in VC++. I am struck at a requirement. The user has ...
0
votes
2answers
93 views

Exception Using Dynamically adding controls to silverlight childwindow?

I have a parameterised constructor in My Application. I want to add controls dynamically to my silverlight Child Control Page. But it gives NullReferenceException. I can't find out why it returns ...
0
votes
0answers
29 views

Exception Using Dynamically adding controls to silverlight?

I have a parameterised constructor in My Application. I want to add controls dynamically to my silverlight page, but it gives null reference exception. Why it is returns Null all the time? Can anyone ...
0
votes
1answer
349 views

How to change background colors in ReadOnly textbox in silverlight 5?

I Want To Change Color of ReadOnly Textbox It is Possible To Change Default Color to white Color <Style TargetType="TextBox"> <Setter Property="Background" ...
0
votes
0answers
107 views

Silverlight Telerik pivot grid headers name customization not working

I am using telerik pivot grid for the first time and i have puzzled in displaying data in desired format. i wanted to show header of the column with some custom name as we did in other grid ...
0
votes
0answers
47 views

SilverLight 3.0: The Plugin is vulenrable and should be updated

i am trying to setup silverlight development on visual sudio 2008 SP1. I ifrst installed SilverLight 3 Tools for Visual Studio 2008 SP1 and then Silverlight Toolkit November 2008 by codeplex. After ...
0
votes
1answer
65 views

DataContextChanged event of CheckBox

I am working in Silverlight4 VS 2010.I have placed a CheckBox in my .xaml file. I need it's DataContextChanged event. But unfortunately i didn't find it. Here is my CheckBox : <CheckBox ...
0
votes
1answer
166 views

How to get the control inside datatemplate of a combobox in silverlight4

I have a checkbox inside the data template of combobox in silverlight4. Now i want to get the checkbox in combobox on selectedindex changed event of it.So how i can do that ? Here is my code : ...
0
votes
1answer
191 views

Multi Select Combo Box in Datagrid In Silverlight 4

I want to implement a multi select combox in side a column of datagrid. I have searched on google but i didn't find proper solution. So could you please help me out to solve this problem. And also ...
0
votes
0answers
168 views

Change a BorderBrush color inside ContentControl

I have a control template like this <Style x:Key="ContentPressButton" TargetType="RadioButton"> <Setter Property="Width" Value="154"/> <Setter Property="Height" Value="53"/> ...
0
votes
0answers
77 views

Image conversion in silverlight

How to convert different types of images in silverlight?In windows form it is very simple via System.Drawing namespace.But in silverlight it is absent,so are there any alternative in this case or any ...
6
votes
1answer
327 views

Autocompletebox SelectedText Bug

I want to bind both the SelectedText and SelectedItem properties of an AutocompleteBox because my client wants to be able to input text and select from the list also. It's working properly but ... ...
0
votes
0answers
85 views

mscorlib issues

I am having some issues with Silverlight 3 on Windows 8. I have VS 2012 installed but also have VS 2010 installed because I have some Silverlight 3 applications I cant upgrade. Before upgrading to ...
0
votes
0answers
137 views

wp7 c# implement trigger on control template

I'm building a small wp7 application in which I have a star user control, when the star is clicked its color changes. Here's the code I've got: <Grid.Resources> <ControlTemplate ...
0
votes
0answers
50 views

Write and Edit XML in Silverlight Not working

I got some problem to write xml file in silverlight. I read many problem and solution in stackoverflow But The class XmlTextWriter,XElement and many other Class not work with silverlight. the save() ...
0
votes
1answer
140 views

Silverlight opening relative URI - works when debugging, fails when running outside VS

My Silverlight project uses dane.xml file, which is located in ProjectName.Web/Client.Bin/dane.xml private void ReadXML() { WebClient client1 = new WebClient(); ...
0
votes
1answer
69 views

How can we print POS Receipt through Silverlight?

Here, requirement is to prepare receipt & print through Silverlight Application.I have to send raw data with POS commands like Partial Cut.It should support A8 size.Can it possible to communicate ...
0
votes
0answers
63 views

Silverlight Download a Project File

I have a series of Files (word, pdf, ect) that are stored in my application and the idea is to allow the end user to download these files at their choosing. How is this done in silverlight? I tried ...
0
votes
1answer
33 views

Silverlight 3 debugging issue and intellesense issue

I am pretty new to Silverlight 3.0. I have installed Silverlight 3 Developer on Visual Studio 2008 SP1; and later on I came to know that I have to install Silverlight3_Tools.exe. Hence, I have ...
0
votes
1answer
185 views

How to export SQL Server Database Data into Excel in Silverlight 3

I am new to Silverlight. I am using VS-2008 with Silverlight 3, SQL Server 2005. My requirement is that: I have to retrieve data from Database and to export to Excel. I have googled, but I am not ...
0
votes
0answers
102 views

Silverlight Toolkit Controls are not visible in Toolbox

I have Installed Microsoft® Silverlight™ 3 Tools for Visual Studio 2008 SP1. I could able to write XAML code and compile the same. But, I could not see Silverlight Toolkit in the Toolbox even if I am ...
2
votes
1answer
24 views

How to call page from mainpage in silver light using visual studio

I have created one page in silver light using visual studio, now i want it call from silver light mainpage on button click , how would i get it ...
0
votes
0answers
294 views

DataGrid Header Style in Silverlight 4.0

I want to set header of datagrid like following link. Style in HeaderColumn in Datagrid I have used DataGridColumnHeadersPresenter in my code. See my following code: <Style x:Key="XYZ" ...
0
votes
1answer
138 views

Style in HeaderColumn in Datagrid

Please see this following image of my datagird. Now want a border in headerColumn. I have tried columnheader style but it did not work for me. I want following style of header of datagrid.Please see ...
0
votes
2answers
35 views

silerverlite is web devlopment language or window application?

I am new in this techology. Actually i am confused silverlite is web devlopment language or desktop application or both? can i devlop web site using silverlite?
0
votes
1answer
732 views

Unable to load Silverlight 3 Project in Visual Studio 2010

I've been trying to open a Silverlight 3 solution in Visual Studio 2010, but I've been getting the following error: Unable to read the project file 'ESM.Visualization.csproj'. ...
0
votes
1answer
125 views

Silverlight Datagrid Refresh current page

I have datagrid which is bound to a list of objects from entity framework and is paged using a datapager. My question is- how do I refresh only the current "page" that it is on? For example, if I am ...
0
votes
1answer
180 views

Binding Run object in XAML

I have 2 questions. 1st. I am using Silverlight for windows embedded compact 7 and i have some problems with bindings. i have template like this <Style TargetType="RadioButton" ...
0
votes
0answers
214 views

Tabindex in Tabcontrol in Silverlight

I have a tabcontrol and a simple buttoun in my usercontrol in silverlight. In tabcontrol I have 2 tab items and and each tabitem conatin other 3 textbox and a button. I have set tabindex property to ...
1
vote
0answers
93 views

Silverlight wcf lag when calling functions

I am trying to debug performance issues with a .net 3.5 silverlight 3 - wcf service based application. the service is running under IIS 7 on a server that is not under heavy load The problem is that ...
0
votes
0answers
94 views

Silverlight file upload/population concurrency issue

I'm trying to create a multi-file upload control. Technically it works, but it seems like the webclient is still working on uploading items. When my service tries to repopulate the listbox with the ...
2
votes
0answers
59 views

Adding an event to Silverlight shape in a separate class

So I'm trying to create a copy of a shape once it's dropped on a canvas. My EventHandlers are on the MainPage.xaml.cs. Then I'm using another class to handles the dragging, dropping, etc. Then I'm ...
0
votes
0answers
78 views

Silverlight application crash before starting WEC7

i have a problem with WCE7 and silverlight application, i installed latest updateds and i still get the same error. I have XAML project with 1 button and when i want to start silverlight application ...
0
votes
0answers
26 views

IXRListBox is not triggering LeftMouseDown Event in Windows Embedded Silverlight

I Create List box with Scrollviewer. in Scrollviewer. pScrollViewer->AddMouseLeftButtonDownEventHandler(CreateDelegate(this, &FrictionScrollController::MouseButtonDownHandler)); this ...
1
vote
1answer
279 views

The mapping for the solution could not found while opening silverlight application

I am trying to open silverlight project. It has 12 projects inside.last two projects does not load properly. i am trying to reload those two project a pop up window opened and that is asking ...

1 2 3 4 5 32