Where do I start designing a Custom Control that contains child objects? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:04:08Zhttp://stackoverflow.com/feeds/question/49562http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/49562/where-do-i-start-designing-a-custom-control-that-contains-child-objects2Where do I start designing a Custom Control that contains child objects?MojoFilter2008-09-08T12:22:31Z2008-12-02T15:48:31Z
<p>I think this is a fun engineering-level question.</p>
<p>I need to design a control which displays a line chart. What I want to be able to do is use a designer to add multiple <code>Pens</code> which actually describe the data and presentation so that it ends up with Xaml something along these lines:</p>
<pre><code><Chart>
<Pen Name="SalesData" Color="Green" Data="..."/>
<Pen Name="CostData" Color="Red" Data="..." />
...
</chart>
</code></pre>
<p>My first thought is to extend <code>ItemsControl</code> for the <code>Chart</code> class. Will that get me where I want to go or should I be looking at it from a different direction such as extending <code>Panel</code>?</p>
<p>The major requirement is to be able to use it in a designer without adding any C# code. In order for that to even be feasible, it needs to retain its structure in the tree-view model. In other words, if I were working with this in Expression Blend or Mobiform Aurora, I would be able to select the chart from the logical tree or select any of the individual pens to edit their properties.</p>
http://stackoverflow.com/questions/49562/where-do-i-start-designing-a-custom-control-that-contains-child-objects/51997#519970Answer by NotDan for Where do I start designing a Custom Control that contains child objects?NotDan2008-09-09T14:22:30Z2008-09-09T14:22:30Z<p>Another option is to extend Canvas for the chart and extend Shape for the Pens. Then dynamically draw the shape based on the Color/Data properties.</p>
http://stackoverflow.com/questions/49562/where-do-i-start-designing-a-custom-control-that-contains-child-objects/63996#639961Answer by Jobi Joy for Where do I start designing a Custom Control that contains child objects?Jobi Joy2008-09-15T15:34:23Z2008-09-15T15:34:23Z<p>I would go with Chart as an ItemsControl and its ItemsPanel be a Canvas(For some light use I would go with Grid as ItemsPanel). And each Pen will be a CustomControl derived from PolyLine class. Does that make any sense?</p>
http://stackoverflow.com/questions/49562/where-do-i-start-designing-a-custom-control-that-contains-child-objects/334399#3343991Answer by Rhys for Where do I start designing a Custom Control that contains child objects?Rhys2008-12-02T15:48:31Z2008-12-02T15:48:31Z<p>For those interested in making their own control from a personal development point of view (as stated in the original question) then I'd suggest a structure in this format.</p>
<pre><code><Chart>
<Chart.Pens>
<Pen Name="SalesData" Data="{Binding Name=SalesData}" />
<Pen Name="CostData">
<Pen.Data>
<PenData Y="12" X="Jan" />
<PenData Y="34" X="Feb" />
</Pen.Data>
</Pen>
</Chart.Pens>
</Chart>
</code></pre>
<p>For that you will need to expose a Pens collection in the user control (I would not see this as a derived ItemsControl control). This derived user control will encapsulate other controls typically a grid to place a label for the heading, labels for the axis names, possibly a Canvas for the drawing area and a ItemsControl to display the items in the Legend.</p>
<p><hr /></p>
<h2>For those looking for a ready to go solution</h2>
<p>For those looking for a ready to go solution then I'd check out CodePlex for <a href="http://www.codeplex.com/visifire/Release/ProjectReleases.aspx?ReleaseId=19717" rel="nofollow">VisiFire's</a> WPF chart control. It is WPF and Silverlight compatible and it even has a <a href="http://www.visifire.com/silverlight_chart_designer.php" rel="nofollow">Silverlight app</a> for you to enter your data & style and have it generate XAML (or HTML) to paste into your application.</p>