Click here to Skip to main content
15,881,172 members
Articles / Programming Languages / XML

How to Convert a Rectangle to a Path Control using Expression Blend?

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
24 Aug 2011CPOL1 min read 20.5K   2   1
Way to convert a Rectangle or a Ellipse control to a Path control

This will be a short tip of the day where I will show you the way to convert a Rectangle or an Ellipse control to a Path control. If you are not familiar with Expression Blend and are currently working with it to design your UI, this tip will definitely help you in various scenarios.

Let’s start with a small demonstration using Rectangle control. You can do the same for Ellipse too. Read to know more.

Begin with the Rectangle

Let us begin our demo with a rectangle control. We will place it in the main panel called “LayoutRoot” which is a Grid in our case. You can use any panel there as per your wish. In Expression Blend, drag the Rectangle control in the panel which will look as below:

Add a Rectangle in the Panel

The above will modify the XAML code as below:

XML
<Grid x:Name="LayoutRoot" Background="White">
    <Rectangle Fill="#FF7E0E0E" Margin="92,98,206,174" Stroke="Black"/>
</Grid>

Note that, we added the Fill color explicitly to show you the demo properly.

Converting the Rectangle to a Path

Let’s do it now. Select the Rectangle and go to the Menu called “Object” –> “Path” –> “Convert to Path” as demonstrated in the below screenshot:

Convert to Path

This will convert the control to a Path and the XAML of the same will look as shown below:

XML
<Grid x:Name="LayoutRoot" Background="White">
    <Path Data="M0.5,0.5 L341.5,0.5 L341.5,207.5 L0.5,207.5 z" 
          Fill="#FF7E0E0E" Margin="92,98,206,174" 
          Stretch="Fill" Stroke="Black"/>
</Grid>

Here you will notice that the Rectangle has been converted to a Path control. Once this step is done, you can easily use the other functionalities of Path control as per your requirement.

You will also notice that, in the “Objects and Timeline” panel, the Rectangle has been changed to Path:

Rectangle Converted to a Path

Hope this tip was helpful for you. Let me know if you want some more XAML tips like this. In such a case, I will come with some additional tips & tricks for you.

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

 
QuestionMy vote of 1 Pin
Veit25-Aug-11 2:56
Veit25-Aug-11 2:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.