动态分配列宽到winforms数据网格?

发布于 2024-08-19 19:30:22 字数 353 浏览 2 评论 0 原文

我已经使用它创建了数据网格的列,

   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 数据网格?

I ve created columns of my datagrid using this,

   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));
    }
  • How can i dynamically assign a column width to a winforms datagrid?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

梦里泪两行 2024-08-26 19:30:22

我想你正在寻找一些东西,

DataGridView1.Columns["ColumnName"].Width = 75;

希望它能帮助你。

另外,您可以设置列的AutoSizeMode来自动获取不同的行为。例如,如果将其设置为 ColumnHeader,则单元格宽度将设置为最适合显示标题文本。您可以在此链接中获取更多信息。

I think you are searching for something line

DataGridView1.Columns["ColumnName"].Width = 75;

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.

不乱于心 2024-08-26 19:30:22

这是一个建议:
如果您知道字段的长度,则可以将其长度乘以常数值(例如最大字符宽度)以产生动态宽度。

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.

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