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.
...
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();
...
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 ...
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.??
...
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...
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 ...
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...
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?
...
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...
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...
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...
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>...
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??
...
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...
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
...
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??.
...
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.
...
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...
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...