是否可以使用 silverlight 缩放动态内容?
我是 Silverlight 新手,我对如何缩放动态内容感兴趣。 例如,我有画布和几个列表框,我想缩放它。
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.
我是 Silverlight 新手,我对如何缩放动态内容感兴趣。 例如,我有画布和几个列表框,我想缩放它。
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.
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
是的。
Silverlight 中的每个视觉元素都有多种不同的转换方式。 可以通过在 renderTransform 对象之外添加 ScaleTransform 对象来应用缩放。
上面的 XAML 将缩放 Canvas 内的所有内容(在本例中只是 ListBox)。 ListBox 的行为将继续与 ListBox 一样。
Yes.
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.
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.