Click here to Skip to main content
15,879,348 members
Articles / Desktop Programming / WPF
Article

WPF PolarPanel

Rate me:
Please Sign up or sign in to vote.
3.87/5 (5 votes)
26 Jan 2008CPOL 44.7K   989   36   2
A WPF panel for easily positioning elements in polar coordinates
PolarPanel.jpg

Introduction

The PolarPanel is a WPF derived Panel which allows easy positioning of elements in polar coordinates. With polar coordinates, instead of setting X and Y, you set Angle and Radius for each child element.

Using the Code

Coordinate setting is done by setting the attached Angle and Radius properties of the PolarPanel class on a child element.

  • Angle (in degrees) specifies the angle between the positive X line and the line between the panel center and element center.
  • Radius specifies the distance between panel center and element center.

For example:

XML
<panels:PolarPanel> 
    <Button Content="12" panels:PolarPanel.Angle="90" panels:PolarPanel.Radius="50" /> 
    <Button Content="1" panels:PolarPanel.Angle="60" panels:PolarPanel.Radius="50" /> 
    <Button Content="2" panels:PolarPanel.Angle="30" panels:PolarPanel.Radius="50" /> 
...
</panels:PolarPanel>

History

  • 26th January, 2008: Initial post

License

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


Written By
Software Developer
Israel Israel
Experienced in .Net, C#, WPF, user experience.

Read my blog: http://uxoriented.blogspot.com/

Comments and Discussions

 
Generalcontextmenu Pin
cechode15-Jul-08 18:45
cechode15-Jul-08 18:45 
GeneralRe: contextmenu Pin
Yaakov Davis15-Jul-08 19:22
Yaakov Davis15-Jul-08 19:22 

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.