silverlight-3.0

Viewing PowerPoint Document in Silverlight

Hi... I want to know how to view Power point document in silverlight . I came to know that to get that we have to convert ppt into images then show in silverlight, is it only the way to do. If yes please explain me how to do that. It would be great if u explain with sample code. ...

How to mark certain methods in WCF silverlight enabled service?

I have WCF silverlight enabled service. I have some methods in it. I need to mark certain methods in service and then to determine them when I have get all methods of service by Reflection. MethodInfo[] methods = typeof(TypeOfTheService).GetMethods(); ...

Can we manipulate (subtract) the value of a property while template bidning?

Hi, I am currently defining few grids as following: <Grid.RowDefinitions> <RowDefinition Height="{TemplateBinding Height-Height/5}"/> <RowDefinition Height="{TemplateBinding Height/15}"/> <RowDefinition Height="{TemplateBinding Height/20}"/> <RowDefinition Height="{TemplateBinding Height/6}"/> </Grid.RowDefinitions> While ...

How to convert PPT into images in silverlight application

Possible Duplicates: Convert/View PowerPoint file into/in Silverlight how to Load PPT in silverlight Hi..can anybody tell how to convert ppt into images in silverlight application.?? ...

How to access web application class into silverlight application

Hi..I am beginner in silverlight..I have created a silverlight project. When a new silverlight project is created it is automatically creating a silverlight application and one web application. I have added a class in both applications. Now I want to access a method of web application class into silverlight application class. Is it possi...

How to embed a SilverLight control in ASP.NET control (user or custom)

We have a ASP.NET web application written in VB.NET where we build content programmatically during the Init event. We make extensive use of user controls, building them on the fly, and I now want to start including SilverLight content. Is there an easy way of embedding a SilverLight application in a control, and then instantiating the ...

Which is the most suitable method for Data Access in Silverlight 3?

We are planning to move to Silverlight 3 for application development because we want to take advantage of more flexible UIs and easier deployment. We have previously used Winforms with ADO.Net and SQL Server for data driven applications. I've briefly looked at some of the options for data access with silverlight such as Entity Framework...

Data binding of itemscontrol in Silverlight 3.0

I am trying to define an itemscontrol and data bind it to a List and the code is as below. XAML <ItemsControl x:Name="ic" > <ItemsControl.ItemsPanel> <ItemsPanelTemplate> <StackPanel /> </ItemsPanelTemplate> </ItemsControl.ItemsPanel> <ItemsControl.ItemTemplate> <DataTemplate> <StackPanel> <TextBlock...

Can an user control be loaded in a child window in Silverlight 3.0?

Can an user control be loaded in a child window in Silverlight 3.0? ...

XMLReader in silverlight <test /> type tag problem

Hi I am parsing XML in silverlight, in my XML I have one tag is like <test attribute1="123" /> <test1 attribute2="345">abc text</test1> I am using XMLReader to parse xml like using (XmlReader reader = XmlReader.Create(new StringReader(xmlString))) { // Parse the file and display each of the nodes. while (reader.R...

Farseer settings for a billiard game ?

I am trying to use Farseer to develop a biliiard game. In you download Farseer source code and samples, there is test called "Demo 5: Collision categories". I modified this sample and keeped only 1 category of balls, the red balls. In the circle creation method I modified as shown below _circleBody[0] = BodyFactory.Instance.C...

Silverlight client never calls WCF Service

Hi all, This one has me completed stumped. I have developed a silverlight application that calls back to WCF services ( it's a silverlight - basicHttpBinding) The site works perfectly fine from my development machine, but when it is deployed to the developement server. The application is delivered with the XAP just fine, but it never...

Generic XML parser in Silverlight 3.0

Hi I am developing an application in Silverlight 3.0, I want to make a generic parser of XML in it, as on every call to webservice I am receiving a different XML, I want to make it generic so that I receive an XML in native datastructure of C#? Please help me out? like I am getting XML like this one time <test> <node1></node1> <node2>...

Slider controle is not moving automatically??

Hi....I am using Slider control for audio player in silverlight 3.0 application. I can do forward and backward the slider.The problem is the slider is not moving automatically even the audio is playing. How to get it?? ...

Slider control in silverlight

I am using slider control for an audio player in silverlight application. The slider is not moving while audio is playing. The below one is my XAML code . How to get it? <Slider x:Name="Slider" Grid.Column="0" Grid.Row="1" Grid.ColumnSpan="2" MouseLeftButtonDown="MouseClicked" MouseLeftButtonUp="MouseReleased" ValueChanged="Slide...

Get Current Client Silverlight Version?

Hi I want to know if there is a way using C# to get the Current Silverlight Version a user is running when opening a client of an app im developing. Its for logging purposses. I want to know if they are using silverlight 3 or 4 on their browsers ...

How to display Total Time Duration and Current Time of video

I want to display time duration of a video in silverlight 3.0 application. The format should be like 00:20 / 05:00 . ( Current Video time / Total Video Time). How to get it??. ...

Hosting Silverlight App in VB.Net WinForm application

Hi , I have a silverlight app and winform app. My requirement changed to Display the Silverlight app inside th WinForm app developed in VB.Net on a form. Is there workaround for the same. ...

Getting unhandled exception when DataTemplate is created dynamically using Silverlight 3.0

Requirement is to create a reusable multi-select combobox custom control. To accomplish this, I am creating the DataTemplate dynamically through code and set the combobox ItemTemplate. I am able to load the datatemplate dynamically and set the ItemTemplate, but getting unhandled exception (code: 7054) when combobox is selected. Here is...

Silverlight avoid lose focus on datagrid

Hi, I have a question: How could I keep the focus on a combobox of a cell inside a datagrid in edit mode; even when I drag a textbox inside a scroll viewer to drag & drop. This is the behaviour I need: The user start to edit a cell by double clicking, and a combobox is showed, then the user could drag and drop some text (one of the te...