Hope you already read my article series "Collection of Windows Phone 7 (Mango) Tutorials". During the tutorial series, we used the common styles "PhoneTextNormalStyle" and "PhoneTextTitle1Style" in the TextBlocks added to the TitlePanel. So what are those? These are all common styles defined by the style library of WP7 SDK.

 

In this post, we will learn about various font sizes defined in the default style library of Windows Phone 7. So, you don't have to define them again and can reuse those styles which will be standard sizes all over any Phone 7 Applications. Let's discuss them here. Read to know more about it.

Published by on under CodeProject | Silverlight

Sometime we need to bind the same data in different properties of the same control. For example, in some cases we need to show text in a TextBlock and also want to show the same text as a Tooltip to that TextBlock control.

 

How to do it? It's very easy to bind the same value twice in the control. But is there any other way to implement the same? Let us discuss this today in this blog post. If you are not aware of it till date, you will definitely like.

Published by on under CodeProject | DZone

Today in this article we will discuss how to fetch feed from Picasa and display images from that RSS feed to your Windows Phone 7. This will not only clear the image feed mechanism in WP7, but will also help you to understand how to read RSS feed in Windows Phone 7 or in a Silverlight application.

 

After reading this article, you will be able to fetch any feed and display specific content in your application. Hope, this will help you. Don't forget to share it to your followers and if you have any query, drop a line below.

Published by on under Picasa | RSS

Here comes the weekly news digest of Silverlight-Zone.com. During last week (i.e. from 7th August 2011 to 13th August) we have submitted 83 news links in Silverlight-Zone on various topics like Silverlight, Windows Phone 7, LightSwitch, XAML, MVVM and more.

 

In this post, I am going to share the top 5 visited posts @SilverlightZone during last week. Also, I am going to share the daily news digest links in case you missed to find some of them.

Published by on under LightSwitch | Silverlight

Sometime we need to detect the browser information of the user's computer where our Silverlight application is running. We can do this using the JavaScript but sometime it is useful to detect it from our Silverlight application. So, how to do it? Let us discuss this with a small simple example.

 

Read this post to know how to detect the browser information using the HtmlPage.BrowserInformation property.

Published by on under CodeProject | DZone

"Why my Visual Studio debugger is not working for my Silverlight application?" - it's not a new question. People ask this several time in different forums. If you search on net, you may probably find the solution. But, in this post I am just sharing the solution once again for my blog readers and anyone on the net who may face similar issue in future.

 

In this post, I will share you 4 small tips. Just follow the steps from top to bottom and let me know which one resolved your problem. This tip might not be a new thing for you but don't forget to share to others. This could be useful for them.

Published by on under CodeProject | Silverlight

All most all secured sites like bank websites asks you to close your browser window after you signed out from the web application. This is due to high security which actually removes all session details from the browser cache.

 

If you want to develop the same behavior in your Silverlight application, how will you do this? This post covers the code to implement the functionality of the same. Read to know more.

Published by on under CodeProject | DZone

Few weeks ago Mr. Jim Moscater, Community Leader of DZone, contacted me saying that he really liked my WP7 & Silverlight related blog contents and wanted to invite me to join DZone's MVB (Most Valuable Blogger) program.

 

I am very proud to say that, I am now a MVB of DZone. So, what is this MVB Program? Read to know more about this.

Published by on under Achievements | Awards

During last week (from 31st July 2011 to 6th August 2011) around 89 article links on Silverlight, Windows Phone 7, LightSwitch and XNA submitted in Silverlight-Zone.com.

 

In this digest post, top 5 popular links are on "Windows 8 and the Future of Silverlight", "7 reasons to be a WP7 developer", "What's new in Silverlight 5", "Smooth Streaming on WP7" and "Windows Phone SDK 7.1 - A Developer review". If you are worried about the future of Silverlight, never miss to read out the post by Identity Mine.

 

Read to know more about the popular posts and find out the daily news digest links. Follow us on Twitter and become a fan of our Facebook page to be updated on latest article links.

Published by on under LightSwitch | Silverlight

If you work in XAML pages, sometime you might noticed that the XAML page freezes for sometime while opening the page in design view. This is very annoying and many time it is responsible to crash the Visual Studio IDE. So what to do?

 

If you use Expression Blend to design the XAML page or don't want to open the XAML in design view, this small tip will help you to improve the performance of the IDE. Read more to know.

Published by on under CodeProject | Silverlight

Few days ago, I published one article on "Application Library Caching in Silverlight 4". In that article, we discussed about Library Caching concept in detail with a small demo. We discussed various parts of the AppManifest to support this feature for 3rd party libraries. But sometime you may need this feature for your own custom libraries too to reduce the XAP file size by separating the external assemblies in their own ZIP file, which will download by the app when it is require.

 

Let us discuss on this topic today by a small example which will help you to understand how to prepare your dll library to support Library Caching by your application. Read more to learn about it.

Published by on under Silverlight | SilverlightTips