Silverlight is Microsoft's cross-browser, cross platform plug-in for media experiences and rich interactive applications. The version 4 was released in April 2010.

learn more… | top users | synonyms (1)

0
votes
0answers
7 views

How send Generic List as a wcf service parameter from silverlight without using Add Service Reference?

I have a Client and Server application. For Client application I use SilverLight and for Server application I use WCF. I provide services for SilverLight application using ChannelFactory. So there is ...
0
votes
1answer
11 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) ...
1
vote
0answers
15 views

How to play videos using Smooth Streaming media element

I want to stream a video file in my windows phone application.. After i have researched, the smooth streaming media element would do this, I believe. but when im assigning the SmoothStreamingSource to ...
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 ...
-1
votes
0answers
5 views

Xml Editor for silverlight dynamic controls [closed]

I m trying to generate xml file for silverlight drag and drop controls... I need to do this on button click... Is there someone who can guide me???
0
votes
0answers
29 views

Remove ListenAttached DependencyProperty from FrameworkElement

I registered an attached DependecyProperty to an ScrollViewer. This Looks like: Binding b = new Binding("VerticalOffset") { Source = myScrollViewer}; DependencyProperty prop = ...
0
votes
0answers
7 views

WebSocket4Net in SilverLight

Iam trying to create a Websocket client through WebSocket4Net with port 4503.However i could see the the WebSocket status only as "Connecting" as it is neither raising any exceptions nor proceeding ...
1
vote
0answers
10 views

How to blind childwindow content to a datagrid in silverlight?

I have a datagrid with 4 fields: From, To ,Title ,Message ;and to buttons + and -. When the + button is clicked a childwindow with 3 textboxs From, To,Title a and a richtextbox Message opens what i ...
0
votes
0answers
17 views

Convert rtf to xaml in silverlight

I want to load a rtf file in silverlight using RichTextBox control but this control doesn't load file in proper format. can anyone tell how to do so or convert rtf to xaml? Here's the xaml : ...
0
votes
0answers
24 views

Push Notification in Windows Phone 7.1

I am trying to implement Toast notification in my Windows Phone 7.1 app.Using this code i'm sending the notification from server to windows phone: string toastMessage = "<?xml version=\"1.0\" ...
1
vote
0answers
43 views

annoying behavior in binding property in control to another one

I have two radio buttons n my XAML like this: <RadioButton x:Name="Radio1" Margin="12,46,30,0" HorizontalAlignment="Left" ...
0
votes
0answers
38 views

WindowsPhone ListBox increase height during scrooling in my emulator and device as well

WindowsPhone ListBox increase height during scrolling in my emulator and device as well.I'm using Stack Panel inside ListBox . This is myxaml code. <DataTemplate x:Name="LstContentTemplate"> ...
0
votes
0answers
15 views

Is there a tool to check my crossdomain.xml added to my site is working fine?

Is there any tool to check that crossdomain.xml which I have added (to the root of my site) is allowing cross domain web requests. I have a silver light application which makes cross domain requests ...
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 ...
0
votes
2answers
37 views

How to change the scroll bar color in windows phone 7

Please tell me any one How can i change the scroll bar color in windows phone 7 and also i want to customize the scroll bar in windows phone 7 Thanks in advance.,
2
votes
0answers
23 views

How can I stop ResourceManager from defaulting to my current culture if a key is not found

The question is pretty self-explanatory, but here's a sample reproduction case. I have three resx files: Translations.resx Has code generation enabled and no key-value pairs ...
0
votes
0answers
8 views

Datagrid focus with MVVM

I have datagrid , I want to focus it only if the abool variable in MVVM is set to true in viewmodel I set the bool property to true , but I never get it focused I use the following code ...
0
votes
0answers
12 views

I need to fetch the co-ordinates of word from a multiline textbox in silverlight

I have spent an entire day to implementent functionality like GetRectFromCharacterIndex() with no success. Microsoft has not implemented it for Silveright 4. I need to fetch the co-ordinates (Start ...
-1
votes
2answers
54 views

Splash screen in Landscape Mode in Windows phone 7 [closed]

Hi i want to start up my app in landscape mode so splash screen also need to start up in landscape mode, i have image (800x480) for splash screen. can any one tell me how to set the image at landscape ...
0
votes
0answers
5 views

Navigation to website in silverlight User control

I have a image, if i click on that image then navigates to . I am using silver-light user control and also am not using MVVM Pattern. Please give me solution for this, how can i navigate.
0
votes
0answers
35 views

async call in sliverlight web resource for dynamics crm 2011

I am developing a sliverlight web resource for dynamics crm 2011. I laso have defined custom entities to save course and contact enrollments. Each course entity has on-to-many enrollments and each ...
0
votes
1answer
26 views

how to block user interaction to image control in windows phone 7?

Please tell me How to Block the user interaction for image control or object in windows phone7. Thanks in Advance
0
votes
0answers
9 views

windows active directory users contryname in silverlight4

How to get active directory users country name in silverlight4? I want to fetch my active directory user's area code to find hometown of user in silverlight 4 application. Please help me to find the ...
0
votes
1answer
27 views

Users country name in silverlight application

I need to find users current country name with bing map api in silverlight4 application. Can you please help me to achive this in silverlight application?
1
vote
1answer
24 views

Cross domain web request from silverligh4 application throws security exception

I have silverlight4 application that makes a cross domain request to some other webserver, as forum stackoverflow posts and MSDN, silverlight has restriction making crossdomain requests. But I found ...
0
votes
1answer
56 views

Reporting within lightswitch web application

Currently I am working on a tool using Lightingswitch. It is a pretty straightforward tool and will be deployed as a webapplication on either Windows Azure or Amazon cloud service. Depending on the ...
0
votes
1answer
30 views

'System.Windows.Markup.XamlParseException: No matching constructor found on type 'Resources'

i have added a key in resource file in silverlight project. after building this project and replaced its XAP file clientBin in application it is giving me the following error "An exception occurred ...
1
vote
0answers
42 views

Merging of cells in Silverlight DataGrid

I need a datagrid control like below. I want to implement cell merge like functionality in a datagrid in silverlight. I have some rows which display a single value and some rows return all the values ...
0
votes
1answer
27 views

Retrieve Image from URL in Silverlight

I have an image in my Silverlight application and I want to source to come from a url. I create a URI and then create a bitmapimage and set it's urisource to this uri. I think set the image's source ...
1
vote
1answer
70 views

Smooth Streaming Player - Multi Audio Track - H.264 SmoothStreams

I am trying develop a silverlight player based on SmoothStreamingMediaElement. For Ref: SSME:SmoothStreamingMediaElement Grid.Row="2" x:Name="medSmooth" AutoPlay="True" MinWidth="320" MinHeight="240"" ...
0
votes
1answer
16 views

Fetching feature layer related data from MySQL or a separate DB on map's info window

Situation is: a). I am having one feature layer which had been plotted on a base map say polygonal features (blocks of land). b). Related data (owner names of blocks) in a separate database (like ...
0
votes
1answer
39 views

Can we resize rows manually in datagrid?

Hi.. Just like we can resize columns in datagrid at run-time, similarily can this resizing functionality be applied to rows in datagrid in silverlight i.e. if the user can expand or collapse a row ...
-1
votes
0answers
29 views

How to run the silverlight .Xap file in linux [closed]

I am doing a silver light project.Its totally completed.I want to load and run .xap file in Linux.What is the the procedure?Any one please tell me?
0
votes
1answer
18 views

Config file transform of Silverlight projects on a CI server

I'm stuck with a transformation of the config files in a Silverlight project (i.e. the ServiceReferences.ClientConfig-file). I have followed some sources (for example this source ) on how to manually ...
0
votes
0answers
37 views

Call Silverlight Application in Asp.net Web application button click

I am new to Silver-light, I have to perform a task as "Connect to serial port device" in Web application which is Asp.Net Web Application. This can be accessible in any browser from client side. the ...
0
votes
0answers
22 views

override error handler in silverlight multi file uploader

I am working with free silverlight multi file uploader. It has an .ashx handler for uploading files. whenever any exception occurs (file already exists lets say), it will be thrown by handler and that ...
0
votes
1answer
28 views

Shortcut on Silverlight , and default browser shortcuts

I want to handle shortcut in my app so I keydown event handler as following Application.Current.RootVisual.AddHandler(UIElement.KeyDownEvent, new KeyEventHandler(HandleKeyDown), true); The ...
1
vote
2answers
64 views

How can I “stick” a control on top edge of screen?

I have a custom control which shows some statistic data and need always be placed at the top edge of WP7 screen. but, when user inputs something on a textbox, the soft-keyboard popup. And the custom ...
0
votes
0answers
30 views

Silverlight InitParams Maximum Length

I am passing a long string as parameter to e.InitParams from Student.aspx page to Silverlight component. Currently there is no problem in sending from Student.aspx and fetching the string in ...
0
votes
0answers
26 views

Update item in Domain Context only updates after refresh Page using silverlight 4 RIA

I am updating data using SP. dcBusinessAccountingContext.ComponentReplaceUSP(comp, replace, Quantity, UOM); dcBusinessAccountingContext.SubmitChanges(submit, "string").Completed += (s, a) => { ...
0
votes
0answers
31 views

Silverlight 4.0 Event Handling Sequences

I have a ComboBox (cmbStatus), a TextBox (txtName), and a Button (btnSave). I do not assign any events in the XAML. In the code for the containing UserControl_Loaded event handler, I wire up ...
0
votes
0answers
126 views

How to integrate existing Silverlight 4 RIA web site and brand new MVC.NET

We have been developing Silverlight RIA Line of business application for the last few years. Since Microsoft has decided to discontinue Silverlight and stop supporting it in the future we have to ...
0
votes
0answers
42 views

silverlight 5 add a new list item using WCF in Sharepoint 2007

I am using Silverlight 5 and sharepoint 2007. I have added a service reference to my Silverlight project. No values are added to the list ServiceReference3.ListsSoapClient ws = new ...
0
votes
2answers
48 views

How to define 'Short' name of selected element in ComboBox header

I work with Silverlight 4. There is a ComboBox that contains list of items. These items have "ToString()": public class SquadFlangViewModel { static SquadFlangViewModel() { int ...
0
votes
1answer
40 views

Silverlight application not funcitoning

I have made a silverlight application for drag and drop uploading. Now, this application works fine when I deploy it from local server. But whenever I deploy it from QA server (machine on the same LAN ...
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 ...
0
votes
0answers
34 views

Value does not fall within the expected range while using GeneralTransform for TransformToVisual

I am working on asp.net mvc2 project which has a silverlight control shown in a Contacts.aspx view. The silverlight control has a tabcontrol with three tabitems( TabItem_A,TabItem_B,TabItem_C). During ...
0
votes
1answer
32 views

DataBind to Combobox In SilverLight 4 .0

I am trying to databind to the combobox. Data is coming from a database table which name is tbltest and table has 2 fileds id and name. When I am trying to bind name to combox it display me ...
0
votes
0answers
17 views

Block http method in SilverLight application

I am working on a Silverlight 4 web application. Each time when this application is called from a browser, the http request for the xap files are generated and sent to the server. It will download the ...
0
votes
0answers
19 views

How to gray out the silverlight section of the page while the jquery UI modal pop up opens?

I have a Test.aspx page in an asp.net mvc2 project, on which I have a silverlight control displayed. The page also contains a hyperlink button which causes a jquery UI modal pop up to open. All the ...

1 2 3 4 5 107