条件 XAML
为了便于开发,我使用 ViewBox 将所有内容包装在窗口内。这是因为我的开发机的屏幕比部署机小,所以使用 ViewBox 可以更好地实现比例。显然,它没有理由出现在代码的发布版本中。是否有一种简单的方法可以有条件地包含/排除 XAML 中的“包装”ViewBox?
例如
<Window>
<Viewbox>
<UserControl /*Content*/>
</Viewbox>
</Window>
For easy of development I'm using a ViewBox to wrap all content inside a Window. This is because my development machine has a smaller screen than the deployment machine so using a ViewBox allows for better realisation of proportion. Obviously there is no reason for it to be there on Release versions of the code. Is there an easy method to conditionally include/exclude that 'wrapping' ViewBox in XAML?
E.g.
<Window>
<Viewbox>
<UserControl /*Content*/>
</Viewbox>
</Window>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在资源字典中可访问的地方创建两个控件模板。
它们应该看起来像这样
,然后您可以在主视图中使用它
,然后来回切换,只需更改
StaticResource
中的查找键,从“debug_view”绑定到“release_view”(如果您想这样做)更动态的是,您还可以这样做:
然后在您的代码隐藏中
,根据是否定义了 DEBUG 符号,将选择不同的模板。
create two control templates in a resources dictionary somewhere accesible.
they should look like this
then you could use this in your main view
then to switch back and forth just change the lookup key in the
StaticResource
Binding from 'debug_view' to 'release_view'if you wanted to make it more dynamic you could additionally do this:
then in your codebehind
this way depending on whether or not the DEBUG symbol is defined different templates will be selected.