Is it possible to zoom dynamic content with silverlight? - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T03:27:43Zhttp://stackoverflow.com/feeds/question/833995http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/833995/is-it-possible-to-zoom-dynamic-content-with-silverlight0Is it possible to zoom dynamic content with silverlight?a-galkinhttp://stackoverflow.com/users/1027782009-05-07T10:51:44Z2009-11-13T01:00:01Z
<p>I am new one with Silverlight and I am interested in how to zoom dynamic content.
For instance i have canvas and several listboxes and i want to zoom it.</p>
http://stackoverflow.com/questions/833995/is-it-possible-to-zoom-dynamic-content-with-silverlight/837485#8374850Answer by markti for Is it possible to zoom dynamic content with silverlight?marktihttp://stackoverflow.com/users/797492009-05-07T23:04:06Z2009-05-08T16:45:06Z<p>Yes.</p>
<p>Every visual element within Silverlight has a number of different ways you can transform it. Scaling can be applied by adding a ScaleTransform object othe an objects renderTransform.</p>
<pre><code><Canvas>
<Canvas.RenderTransform>
<ScaleTransform ScaleX="2" ScaleY="2" />
</Canvas.RenderTransform>
<ListBox />
</Canvas>
</code></pre>
<p>The above XAML will scale everything inside the Canvas (in this case just the ListBox). The ListBox will continue to behave just like a ListBox.</p>