调整宽度和宽度控件的高度 (ASP.NET)
我刚刚开始从我的 WPF 知识中学习 ASP.NET。我认为与 WPF XAML 设计相比,ASP.NET 中的 UI 设计非常困难。
我的 UI 布局有问题。在WPF中,我们使用Width =“*”和Height =“*”来调整列表视图,列表框等控件的高度和宽度,以便应用程序可以在任何分辨率下运行而不会重叠?在 ASP.NET 中设置高度和宽度的替代方法是什么?
I am just starting to study ASP.NET from my WPF Knowledge. I think the UI designing is very difficult in ASP.NET compared to WPF XAML design.
I have a problem in my UI layout. In WPF we use Width=" * " and Height=" * " to adjust height and width of the controls like listview, listbox so that the application can run in any resolution without overlapping ? What is the alternate way to set height and width in ASP.NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
理想情况下,您需要使用 CSS 设置控件的样式。
如果您的控件具有 CssClass="myControl",那么在 CSS 中您将能够执行以下操作:
其中 * 是数值。您还可以将值类型从 px 更改为 % 和其他值类型。
使用 % 值类型将使您能够满足多种分辨率,同时保留与应用程序类似的感觉。
Ideally you'll want to be setting the style's of your controlls using CSS.
If you have a control that has a CssClass="myControl" then in your CSS you'll be able to do the following:
Where * is a numerical value. You can also change the value type from px to % and other value types.
Using a % value type will allow you to cater for multiple resolutions whilst retaining a similar feel to your application.
使用“%”指定高度和宽度。
阅读
宽度 和 高度
Use '%' for specifying height and width.
Read
width and height