将xaml页面分成不同的部分
我想实现 这个< /a>
(这个应用程序是用flex制作的)使用silverlight的应用程序类型,我该怎么做?
基本上我想要的是将xaml页面分为3部分..,在树视图选择上更改页面的右侧部分应该动态变化。
i want to implement this
(this application is made in flex)type of application using silverlight, how can i do this?
basically i want is to divide xaml page in 3 parts.., on tree view selection change right parts of page should change dynamically.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过在页面上设置多个导航框架来完成多个 xaml 文件的加载。
You could accomplish the loading of multiple xaml files by having multiple navigation frames on a page.
如果您想获得适合您需求的答案,您应该更加具体。
划分页面的一种方法是使用 dockpanel 并且您将获得您描述的实现 TreeView
SelectedItemChanged
事件的行为。希望有帮助!
You should be more specific if you want to get answers that fit your needs.
One way to divide the page is using a dockpanel and you get the behaviour that you describe implementing the TreeView
SelectedItemChanged
event.Hope hepls!
如何使 DockPanel 中的项目展开以适应 WPF 中的所有可用空间?
How to make items in a DockPanel expand to fit all available space in WPF?