This will be a short tip of the day where I will show you the way to convert a Rectangle or a Ellipse control to a Path control. If you are not familiar with Expression Blend and 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:

 
<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:

 
<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 case, I will come with some additional tips & tricks for you.

Have a question? Or, a comment? Let's Discuss it below...

dhgate

Thank you for visiting our website!

We value your engagement and would love to hear your thoughts. Don't forget to leave a comment below to share your feedback, opinions, or questions.

We believe in fostering an interactive and inclusive community, and your comments play a crucial role in creating that environment.