Where to learn proper way to use Silverlight (or WPF) - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T11:05:04Zhttp://stackoverflow.com/feeds/question/560515http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/560515/where-to-learn-proper-way-to-use-silverlight-or-wpf0Where to learn proper way to use Silverlight (or WPF)Steve Crane2009-02-18T10:23:21Z2009-02-18T12:04:55Z
<p>Approaching Silverlight development is a rather daunting task as it seems to require a rather different mindset to work I have done in the past.</p>
<p>I have been working on it for several months and we have already released an application that presents form-based pages. So I have the basics of XAML for layout but what I need to do now is move into graphically representing data. For example transform a list of objects representing vehicle speed recordings into a line graph of speed. I am at a loss on what the best way is to approach this.</p>
<p>Can anyone point me to articles or tutorials that present this kind of thing?</p>
http://stackoverflow.com/questions/560515/where-to-learn-proper-way-to-use-silverlight-or-wpf/560560#5605601Answer by John Leidegren for Where to learn proper way to use Silverlight (or WPF)John Leidegren2009-02-18T10:42:46Z2009-02-18T10:42:46Z<p>Bang your head against it for 3-6 months. That's how I did it and it's worked out pretty well so far.</p>
<p>But seriously, the learning curve sucks.</p>
<p>There's charting libraries for Silverlight out there, you could grab one of those but I wouldn't waste money on it. It's relatively easy to write this kind of code yourself.</p>
<p>All you really need is a DrawingVisual. Once you have that you can render what you need on to it's surface. The trick is to make sure that you have sufficient layout information when you render. Because this is vector graphics, you can use the ScaleTransform to match your content bounds instead of repainting on size changed. Other than that, you'll wanna host your DrawingVisual in a UIFrameworkElement and let the dimension of that object govern where and how you draw your data. This will give you all the layout goodness of WPF/Silverlight.</p>
<p>For drawing there are plenty of Geometry classes you can rely on but there's one thing that you'll wanna do and that's to adjust the level of detail in your data points with respect to your drawing. This is the number one trick to make sure you don't hog the CPU.</p>
<p>Avoid drawing more than one data point per pixel. If you have a lot of data points, and a small drawing surface you can use a rolling average to smooth the result.</p>
<p>If you approach this with the above things in mind you should be able to write a flexible graph UI element that you can visualize data with, in no time at all.</p>
<p>I did this in a WPF application, I'm pretty much assuming that you can do the exact same thing with Silverlight 2.0, you'll just yell at me if you cant?</p>
http://stackoverflow.com/questions/560515/where-to-learn-proper-way-to-use-silverlight-or-wpf/560785#5607851Answer by brodie for Where to learn proper way to use Silverlight (or WPF)brodie2009-02-18T12:04:55Z2009-02-18T12:04:55Z<p>Your first port of call for Silverlight learning should be the official site <a href="http://silverlight.net/Learn/" rel="nofollow">http://silverlight.net/Learn/</a> </p>
<p>If you want to do any data visualization/charting then first try the <a href="http://www.codeplex.com/Silverlight" rel="nofollow">Silverlight Toolkit</a> on codeplex. It's fantastic if you want to get anything up and running quickly.</p>
<p>Also check out Delay's Blog on <a href="http://blogs.msdn.com/delay/archive/2008/12/10/great-silverlight-charts-are-still-just-a-click-away-chartbuilder-sample-and-source-code-updated-for-charting-s-december-08-release.aspx" rel="nofollow">charting and the chartbuilder code</a></p>