Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对 Windows 窗体开发有点陌生,但在 Web 开发方面经验丰富。有没有办法将百分比宽度/高度分配给 Windows 窗体控件,以便它在用户调整窗口大小时扩展/收缩?当窗口调整大小时,可以编写代码来改变控件的宽度/高度,但我希望有更好的方法,比如在 HTML/CSS 中。在那儿?
一句话,没有。不过,您可以在父控件调整大小事件中以编程方式轻松完成。例如:
private void Form1_Resize(object sender, EventArgs e) { dataGridView1.Width = Convert.ToInt32(this.Width * 0.9); dataGridView1.Height = Convert.ToInt32(this.Height * 0.9); }
但如果可以的话,请使用上面评论中提到的 WPF。