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.
在 winform 上,我有一个 DataGridView 和其中的列。出于某种奇怪的原因,当我运行我的程序时,这些列在运行时彼此堆叠在一起。无论我做什么,都不会改变。我不知道我是在设置某些属性还是什么。
在设计期间:
在运行期间:
正如 lc 所建议的,需要设置列宽和最小宽度。我将列的宽度设置为 100,最小宽度设置为 5。当我将最小宽度更改为 100 时,它起作用了。
谢谢lc。