调整宽度和宽度控件的高度 (ASP.NET)

发布于 2024-08-10 11:21:19 字数 205 浏览 1 评论 0原文

我刚刚开始从我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟酉 2024-08-17 11:21:19

理想情况下,您需要使用 CSS 设置控件的样式。

如果您的控件具有 CssClass="myControl",那么在 CSS 中您将能够执行以下操作:

.myControl{
    width: *px;
    height:*px;
}

其中 * 是数值。您还可以将值类型从 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:

.myControl{
    width: *px;
    height:*px;
}

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.

雨夜星沙 2024-08-17 11:21:19

使用“%”指定高度和宽度。

指定为
包含块的宽度。

阅读

宽度高度

Use '%' for specifying height and width.

Specified as a of
containing block's width.

Read

width and height

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文