动态分配列宽到winforms数据网格?
我已经使用它创建了数据网格的列,
private void Receive_Load(object sender, System.EventArgs e)
{
DataGridView1.Columns.Add("Sender",typeof(string));
DataGridView1.Columns.Add("Time",typeof(string));
DataGridView1.Columns.Add("Message",typeof(string));
}
- 如何动态地将列宽度分配给 winforms 数据网格?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我想你正在寻找一些东西,
希望它能帮助你。
另外,您可以设置列的AutoSizeMode来自动获取不同的行为。例如,如果将其设置为 ColumnHeader,则单元格宽度将设置为最适合显示标题文本。您可以在此链接中获取更多信息。
I think you are searching for something line
I Hope it help you.
In addition, you can set the AutoSizeMode of the column to obtain different behaviours automatically. For example, if you set it to ColumnHeader, then the cell width will be set to the best fit for showing the header text. You can get more info in this Link.
这是一个建议:
如果您知道字段的长度,则可以将其长度乘以常数值(例如最大字符宽度)以产生动态宽度。
Here's a suggestion:
If you know the length of your fields you can multiply their length by a constant value (max character width for example) to produce a dynamic width.