是否有任何默认策略来准备决议变更申请?
如何准备 Silverlight 或 WPF 应用程序从大分辨率更改为小分辨率?
我想使用停靠面板策略仅适用于从小分辨率更改为大分辨率。
那么,有没有默认的策略呢?谢谢。
问题:我有一个按钮,两端像素为 1024、768。我将分辨率更改为 800x600。
How to prepare a Silverlight or WPF application to change from a big resolution to a small resolution?
I guess using dockpanel strategy only works for changing from a small to a big resolution.
So, is there any default strategy? Thanks.
Problem: I have a button the ends in the pixel 1024, 768. And I change the resolution to 800x600.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
前段时间我也遇到过类似的问题。作为解决方法,我将窗口内容包围在 Viewbox 中。
使用 1024x768 而不是 1280x1024 的用户会看到应用程序内容更小,但他们更喜欢这样而不是一直滚动。 (WPF)
我必须为我们的下一个项目解决这个问题,希望有人有更好的想法!
Some time ago I had a similar issue. As a workaround I surrounded the window content in a Viewbox.
Users that used 1024x768 instead of 1280x1024 see the application content smaller, but they preferred this than scrolling all the time. (WPF)
I'll have to work on this for our next project, let's hope somebody has better ideas!
好吧,您可以将布局设计为“拉伸”,并在设计时考虑到 800x600,因此只要布局变得大于 800x600,它就会适合。但是...
如果您确实想要一些奇特的东西,请检测窗口大小/ActualHeight 和 ActualWidth 的变化(使用 SizeChanged),然后通过代码根据大小缩放应用程序(使用动态变换)。
例如,在主视图中的“LayoutRoot”中:
只是一个想法,我的意思是如果屏幕比您放大的设计大,反之亦然。
希望这有帮助。
Well, you could design your layout to Stretch and designing it with 800x600 in mind, so whenever the layout becomes larger than 800x600 it will fit. But...
if you really want something fancy, detect the change in the window size/ActualHeight and ActualWidth (using SizeChanged) then scale the the application according to size via code (using dynamic transforms).
For example, in the "LayoutRoot" in your main view:
Just an idea, i mean if the screen is bigger than your design you enlarge and vice versa.
Hope this helps.
我认为这样做更好:
I think doing this way is better: