Click here to Skip to main content
15,885,244 members
Articles / Silverlight

How to Use the New Rupee Symbol of India in Silverlight?

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
20 Jul 2010CPOL4 min read 13.8K   1  
How to use the new Rupee Symbol of India in Silverlight?

File:Indian Rupee symbol.svgIn July 2010, the Indian Cabinet selected a new Symbol for the Indian Rupee which looks like the snapshot shown on the left side. In this post, I will describe how to integrate the same symbol in Silverlight application.

As the Unicode is not present for that until now, we need to use some font to write the letter using that. Fordian Technologies has the font and you can download it from their official Blog. The latest version of the font is available here: Rupee Font Version 2.0.

Let us have a quick tutorial on it to create a Silverlight application with the new Rupee Symbol of India in it.

Installation of Font

To start with the development process, you must have to download the Font from Fordian Technologies Official Blog. Once downloaded, install it in your system. If you are using Windows 7, just right click on the downloaded “Rupee_Foradian.TTF file and click “Install”. This will install the font in the System and will be available throughout the applications available in the system. If you are using any other Microsoft OS, just copy the .TTF file to the “%WINDIR%\Fonts” directory.

Verify the Installation of the Font

Once installation of the font is done, it is time to validate whether the font is available for you in any application in your system. Open “Notepad” and goto “Format” –> “Font”.

image

Now in the font dialog, type “Rupee Foradian” (this is the name of the font) in the Font TextBox field. If it shows as below in the ListBox means your font has been installed successfully in your system. Wohooo… Open-mouthed smile

image

Using the Symbol (for Blend Users)

Hey, if you are familiar with Microsoft Expression Blend, then it is very easy to embed the font and then use it in your Silverlight application. For Visual Studio users, it is also easy but you need to know more things. I will come to this point later. First, let us discuss it for Expression Blend users.

Open your Silverlight project and add a TextBlock inside your .xaml page. Assuming you know the basic XAML designing. Now, go to the properties panel of your TextBlock and enter the following string inside the “Text” attribute: “Product Rate: ` 103.50”. The character (`) mentioned in the string generates the new Rupee symbol of India if you are using the “Rupee Foradian” font.

Your text will look like the entered text (i.e. Product Rate: ` 103.50) in your page. Now from the property panel, click “Font Manager” in the step no: 1. This will bring up the Font Manager dialog to the screen. Enter “Rupee Foradian” (without the quote) in step no. 2 and you will see the font appearing in the below panel. Select the checkbox for the font name and click ok in the 3rd step.

image

Once done, select the “Rupee Foradian” from the font dropdown list and mark the checkbox of the “Embed” attribute as selected (see the below snapshot). This will embed the font in your application.

image

Now have a look at the entered text in the UI or else just run the application. You will see that the ` character has been converted to the new rupee symbol. See the output screen below:

image

It’s so easy to do that using Expression Blend. Have a look into the solution folder. You will see that there is a folder named “Fonts” created automatically and the font file has been copied inside it. Blend added this for you. Surprised smile

Using the Symbol (for Visual Studio Users)

In Visual Studio also, it is very easy. Create a directory named “Fonts” in your Silverlight project and copy the font file inside that.

image

Now go to the properties pane of the font file from your Visual Studio IDE itself. Select “BlendEmbeddedFont” from the “Build Action” dropdown and set “Copy to Output Directory” as “Do not copy”. See the below snapshot for details.

image

Go to your XAML and add the following code and be sure that you inserted the proper path and filename to the embedded FontFamily.

XML
<TextBlock Text="Product Rate: ` 103.50" 
            FontFamily="/IndianRupeeDemo;component/Fonts/Fonts.zip#Rupee Foradian" 
            HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="32"/>

Run your application and you will see the string in the UI has the new Indian Rupee Symbol on it. Enjoy! Party smile

Image 13

Image 14

Image 15

This article was originally posted at http://www.kunal-chowdhury.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions

 
-- There are no messages in this forum --