Tag: silverlight
-
Debugging WCF Service from Silverlight: The Breakpoint will not currently be hit at WCF Service error
Assumption Binding configuration at WCF has debugging enabled Cross domain problem has been take care of since WCF and Service is running on different servers. Visual studio is running in administrator credentials or credentials having enough permission to debug on server. While working today I came across a requirement to debug WCF Service from Silverlight…
-
Fetching selected value from List Box in Silverlight
Let us say you have a list box as below. You have a requirement that on click of button fetch value of the same row button belongs to. For example if you are clicking second cross, you should able to fetch value Pinal, SqlServer , 500 from the list box. In above list box There…
-
Creating Deep Zoom Images through c# code
In this quick post, I will show you the creation of deep zoom images from Image in Azure BLOB. You may come with a requirement where you need to create deep zoom images using code. If you need deep zoom images for Pivot Viewer you can very much create it using several tools available. However…
-
Upload Image from Silverlight to Azure BLOB using WCF
Working with Azure Blob is very common task you must be doing. Sometime you may come with requirement to upload an image from Silverlight client to Azure BLOB. In this post I am trying to help you in achieving this. In this post I will show you below three stuffs. Uploading Image to Azure BOLB…
-
Silverlight 5 Multi Column and Linked Text
If you are designer of text and love to play around text formatting’s, then you would love to use Multi Columns and Link text in Rich Text Box. This feature gives your ability to display overflowed content in next box or column rather than using scroll bar to read through all the content. While working…
-
Charts in Windows Phone 7
Today morning I got a call from SQL Server Guru Pinal Dave and conversation was as below. So, I started working on this. I decided to go ahead with hard coded data as below, And function returning data is, To add chart control on XAML, I added namespace…
-
Nested ListBox binding in Silverlight and Windows Phone 7
While creating an application I came across a requirement when I had to put a listbox inside a list box and then I had bind that nested listbox dynamically. For example say, entity class called Roles as below, And you are using Role class in another entity class called Subscription as property We need to…
-
Learn WCF RIA Service: Day 3
Learn WCF RIA Service: Day 1 Learn WCF RIA Service: Day 2 Overview of Domain Service Class On day 2 we ran through creating our first line of business application using RIA services. We did not look deeper much into generated classes. Today we will take a step back and examine Domain Service class. Better…
-
Learn WCF RIA Service: Day 2
Learn WCF RIA Service: Day 1 Building a simple line of business Application using RIA Services Last day we had enough of theory on RIA Services. Today let us get our hand dirty and launch visual studio. We will keep it simple and easy in flow since it is our first exercise. Essentially we will…
-
Working with JavaScript in Silverlight 4.0
In this post I will show you calling of Javascript function from Silverlight. It is very simple and straight forward. Assume you have a JavaScript function on aspx page as below, SilverlightTestPage.aspx You want to call this Javascript function on page load of the Silverlight page then you will have to add namespace And in…