1

如何在 GridView 控件中设置网格项的大小,以便项自动调整大小以填充屏幕。例如,如果有 2 个项目,每个项目将占据屏幕的一半,如果有 3 个项目,每个项目将占据第三个,依此类推.. 谢谢

4

1 回答 1

0

使用ItemStyle.Width列定义上的属性。

如果您不使用autogenerated列,请设置您感兴趣的列的宽度。

如果您使用动态生成的列,则需要在后面的代码中设置宽度。

参考以下:

protected void TextBox1_TextChanged (object sender, EventArgs e)
{
    Label1.Text = "";
    try
    {
      int colWidth = Int16.Parse(Server.HtmlEncode(TextBox1.Text));
      if (colWidth > 0)
      {
        for (int i = 0; i < GridView1.Columns.Count; i++)
        {
          GridView1.Columns[i].ItemStyle.Width = colWidth;
        }
      }
    }
    catch
    {
      Label1.Text = "An error occurred."
    }
}

检查这个 MSDN:

http://msdn.microsoft.com/en-us/library/ms178296.aspx

参考链接:

http://forums.asp.net/t/1176980.aspx

于 2013-05-03T08:58:53.420 回答