动态显示网格内容
我为我的应用程序开发了 3 种不同的布局(类似于我猜你所说的“皮肤”,但布局有很大不同,而不仅仅是颜色和字体的变化)。这些布局用于显示相同的数据,但格式完全不同。这些布局中的每一个都是在它们自己的网格内构建的。
我希望我的应用程序根据运行时可用的字符串值来决定动态显示哪个布局。
让父网格动态显示子网格的最佳方法是什么?
我试图找到某种神奇的 DataTemplate / DataBinding / 模板方法,但似乎找不到最好的方法。或者,我应该寻找显示这些不同布局的不同方法吗?像 ItemsControl 或类似的?
本
I have 3 different layouts (similar to I guess what you would call Skins but the layouts are hugely different, not just changes to colors and fonts) which I have developed for my application. The layouts are used for displaying the same data, but in a completely different format. Each of these layouts have been constructed within their own Grid.
I want my application to decide which layout to display dynamically based on a string value available at runtime.
What's the best way to get a parent Grid to display a Child Grid dynamically?
I'm trying to find some sort of magical DataTemplate / DataBinding / Templating method but just can't seem to find the best way. Alternatively, should I be looking at a different method of displaying these different layouts? Like an ItemsControl or similar?
Ben
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常使用 ContentControl 和 DataTrigger 来确定要使用的 ContentTemplate。
例如,
I usually use a ContentControl and DataTrigger to determine what ContentTemplate to use.
For example,