Where do I start designing a Custom Control that contains child objects? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T08:04:08Z http://stackoverflow.com/feeds/question/49562 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/49562/where-do-i-start-designing-a-custom-control-that-contains-child-objects 2 Where do I start designing a Custom Control that contains child objects? MojoFilter 2008-09-08T12:22:31Z 2008-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>&lt;Chart&gt; &lt;Pen Name="SalesData" Color="Green" Data="..."/&gt; &lt;Pen Name="CostData" Color="Red" Data="..." /&gt; ... &lt;/chart&gt; </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#51997 0 Answer by NotDan for Where do I start designing a Custom Control that contains child objects? NotDan 2008-09-09T14:22:30Z 2008-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#63996 1 Answer by Jobi Joy for Where do I start designing a Custom Control that contains child objects? Jobi Joy 2008-09-15T15:34:23Z 2008-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#334399 1 Answer by Rhys for Where do I start designing a Custom Control that contains child objects? Rhys 2008-12-02T15:48:31Z 2008-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>&lt;Chart&gt; &lt;Chart.Pens&gt; &lt;Pen Name="SalesData" Data="{Binding Name=SalesData}" /&gt; &lt;Pen Name="CostData"&gt; &lt;Pen.Data&gt; &lt;PenData Y="12" X="Jan" /&gt; &lt;PenData Y="34" X="Feb" /&gt; &lt;/Pen.Data&gt; &lt;/Pen&gt; &lt;/Chart.Pens&gt; &lt;/Chart&gt; </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 &amp; style and have it generate XAML (or HTML) to paste into your application.</p>