Is it possible to zoom dynamic content with silverlight? - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T03:27:43Z http://stackoverflow.com/feeds/question/833995 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/833995/is-it-possible-to-zoom-dynamic-content-with-silverlight 0 Is it possible to zoom dynamic content with silverlight? a-galkin http://stackoverflow.com/users/102778 2009-05-07T10:51:44Z 2009-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#837485 0 Answer by markti for Is it possible to zoom dynamic content with silverlight? markti http://stackoverflow.com/users/79749 2009-05-07T23:04:06Z 2009-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>&lt;Canvas&gt; &lt;Canvas.RenderTransform&gt; &lt;ScaleTransform ScaleX="2" ScaleY="2" /&gt; &lt;/Canvas.RenderTransform&gt; &lt;ListBox /&gt; &lt;/Canvas&gt; </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>