流动或固定布局
我正在开发一个数据输入应用程序,并且正在考虑使用 Swing 和 Silverlight 等流体布局方法,其中控件根据窗口大小调整大小。我的问题很简单:您从用户那里收到了关于这些方法的反馈(如果有的话)?撇开屏幕尺寸不谈,我仍然会有一个垂直滚动,所以我想知道我是否最好只走固定路线和绝对位置/大小内容。
I am working on a data entry application and I am considering using a fluid layout approach ala Swing and Silverlight where the controls resize based on the window size. My question is simple: what feedback if any have you received from users on each of these approaches? Screen size aside, I will still have a vertical scroll in place so I am wondering if I would be best served to simply go the fixed route and absolute position/size content.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要走固定路线。如果用户调整窗口大小,他们这样做是有原因的。小部件应适当调整大小。除了在非常特殊的情况下,我想不出任何使用固定布局的有效理由。
话虽如此,没有输入字段换行的布局。那会非常令人不安。让您的小部件自然地增长和缩小。
Do not go the fixed route. If the user resizes the window, they do so for a reason. The widgets should resize appropriately. I can think of no valid reason to ever use a fixed layout except in vey specialized circumstances.
That being said, don't have a layout where input fields wrap. That would be very disconcerting. Just let your widgets grow and shrink naturally.