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.
我希望列适合 DataGridView 表。我有 5-6 列,当我最大化表单时,DataGrid 表看起来很空......像这样:
但我希望它看起来像这样:
我知道它现在看起来很难看......但会添加一些其他字段:)。我只想知道是否可以自动调整列以填充表格?哦,顺便说一句......这是因为我不希望用户允许调整列的大小。
有可能的。您可以将AutoSizeMode列的属性更改为Fill。请注意,设置AutoSizeMode属性不会禁用列大小调整。将相应的属性(我猜AllowColumnResize或其他)更改为false.
AutoSizeMode
Fill
AllowColumnResize
false