如何在silverlight 3.0中启用滚动条
我已在 silverlight 3.0 的 xaml 页面中将画布宽度设置为 1500,高度设置为 1600。
当我运行测试页时,我看不到滚动条。所以我无法滚动查看其余元素。我还需要为网格设置滚动条。
如何启用滚动条?
请帮忙。
I have set my canvas width to 1500 and height to 1600 in my xaml page in silverlight 3.0.
When I run the testpage I can't see scrollbars. So I am not able to scroll to view rest elements. I also need to set scrollbars for a grid.
How to enable scrollbars?
Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将您的组件添加为
ScrollViewer
的子组件。Add your components as children of a
ScrollViewer
.我通过这段代码得到了一个滚动条:
I have got a Scrollbar through this code: