NetProgrammingHelp.com
Asp.Net,C#,Ajax,Sql server,silverlight,Javascript codes exambles articles,Programming exambles

'SILVERLIGHT' Category

Silverlight Data Binding OneWay TwoWay Asp.Net C# XAML

Posted by James Categorized Under: SILVERLIGHT Add Comments

Introduction: In this article,i am going explain about,what are the binding options and modes available in silverlight application. Main: Data binding is simply a process of displaying data to the end user.Silverlight contains a rich data binding platform that will help us to fetching data in faster and using less code. Databinding needs atleast the [...]

Accessing Executing Running Stored Procedure/Function/Package Using Linq Silverlight Xaml

Posted by James Categorized Under: SILVERLIGHT one Commented

Introduction: In this article i am going to explain about how to access a stored procedure using linq. Main: In data driven business applications,instead of queries of we need to use either stored procedure or functions.Linq provide a object oriented,structured approach for accessing stored procedures. Just follow the below steps, 1.Open a new silverlight application [...]

Essentials for Creating/Developing/Programming silverlight project tools wpf xaml

Posted by James Categorized Under: SILVERLIGHT one Commented

Introduction: In this article, i am going to explain about what are the things needed for creating developing programming silverlight project. Main: What are key skills needed for learning silverlight? Must Comfortable with visual studio, Must Comfortable with XML, Must Comfortable with CLR, Knows the difference between DLL and HTML, What is new in silverlight? [...]

How to localize a silverlight application

Posted by James Categorized Under: SILVERLIGHT 9 Comments

Introduction: In this article,i am going to explain about how to localize a silverlight application.Localized resources in Silverlight are very similar to the resource file methods just given. Main: 1. After you create your Silverlight project, add a new resource file called, for example, Resources.resx. This is the default resource file. Visual Studio will also [...]

How to Use Datagrid Control in Silverlight Application

Posted by James Categorized Under: SILVERLIGHT 2 Comments

Introduction: In this article,i am going to explain about how to effectively using datagrid control in silverlight application Main: We need silverlight toolkit for using datagrid in silverlight application,you can download silverlight toolkit in http://codeplex.com/Silverlight, Sample Code: <data:DataGrid x:Name="SampleGrid" Height="300" AutoGenerateColumns="True" IsReadOnly="True"> </data:Grid>   <data:DataGrid x:Name="SampleGrid" Height="300" AutoGenerateColumns="False" IsReadOnly="True"> <data:DataGrid.CellStyle> <Style TargetType="data:DataGridCell"> <Setter Property="VerticalAlignment" Value="Top"></Setter> [...]

Using Silverlight With Asp.Net

Posted by chandru Categorized Under: SILVERLIGHT Add Comments

The only  major difference between using Silverlight with ASP.NET and normal ASP.NET development is that instead of using HTML for the presentation, you’re going to use XAML. The core functionality of Silverlight is provided by a browser plug-in that renders XAML and exposes its internal Document Object Model (DOM) and event programming model to the [...]