Objective This article will explain how to work with Touch events in Silverlight for Windows 7 mobile application. This is part 2 of the touch events. Read my first article on touch events before going through this article. Background We saw in last article on touch events that, even if after touching (clicking) somewhere elseContinueContinue reading “Touch events in Silverlight for Windows 7 mobile application Part #2”
Author Archives: Dhananjay Kumar
Touch events in Silverlight for Windows 7 mobile application
Objective This article will explain how to work with Touch events in Silverlight for Windows 7 mobile application. Background On real device touch screen get sensed by users figure. But on the Emulator Mouse movement works as input for touch events. Touch events detect movement of finger on the screen. There are four touch eventsContinueContinue reading “Touch events in Silverlight for Windows 7 mobile application”
Get an Image using WCF REST service
Objective This article will give a very simple and basic explanation of , how to fetch an image using WCF REST service. Step 1 Create a WCF application. To create a new application File -> New -> Web-> WCF Service Application.Remove all the default code created by WCF. Remove code from IService 1 interface andContinueContinue reading “Get an Image using WCF REST service”
Creating first Windows 7 mobile application in Silverlight
Objective This is a pictorial tutorial on how to create first Silverlight mobile application for Windows 7. This is very simple article giving you introduction how to setup the environment and run and debug the application. Since everyone is talking about Windows 7 Mobile development. Let us learn together J Step 1 Download windowsContinueContinue reading “Creating first Windows 7 mobile application in Silverlight”
Creating IPL Photo gallery using AccordionControl in Silverlight 3.0: Part #1
Objective This article will explain Basic use of Accordion control in Silverlight 3.0 Binding Accordion items with properties of entity class. Creating an Imagesource from Image URL provided. Background This article is first part of 3 or 4 parts IPL Photo Gallery series. In this article, I am reading image, team name and caption nameContinueContinue reading “Creating IPL Photo gallery using AccordionControl in Silverlight 3.0: Part #1”
Reading RSS feed in Silverlight 3.0
Objective This article is going to explain; how we can read RSS feeds in Silverlight 3.0. Expected output User will enter RSS URL in text box. On click of Fetch Feed button ; RSS items will get populated On Clear Search button click text box and list box will be cleared. So, let us startContinueContinue reading “Reading RSS feed in Silverlight 3.0”
LINQ to Object Part #4: Querying Non- IEnumerable collections
Objective In this article, I am going to show, how we could apply LINQ to query non-IEnumerable<T> Collections. I have created a class for my explanation purpose. Student class is having details of students. Student.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace LINQtoOBJECT1 7 { 8 public class Student 9 { 10 11 ContinueContinue reading “LINQ to Object Part #4: Querying Non- IEnumerable collections”
Demystifying CLR Part #1
Objective This is a fully theoretical article. In this article, I am going to explain fundamentals of CLR. How CLR executes codes written in different languages. I am going to explain various components of MANAGED MODULES also. Note: I have written this article on basis of my learning from the very nice book written byContinueContinue reading “Demystifying CLR Part #1”
Hosting and Debugging SilverLight in Windows Azure
Objective This article will give a pictorial representation of how a SILVERLIGHT application can be hosted and debugged on local development fabric of Windows azure Note: This article is taken from original article written by JIM and can be read Here Now a SILVERLIGHT application can be hosted in a Web Role. And on localContinueContinue reading “Hosting and Debugging SilverLight in Windows Azure”
LINQ to Object Part #3: Grouping
Objective In this article, I am going to show, how we could achieve grouping in LINQ to object I have created two classes for my explanation purpose. Student class is having details of students and Hostel class is having details of hostel. Both classes are having a properties HostelNumber common. I will be using thisContinueContinue reading “LINQ to Object Part #3: Grouping”