网格项目填充屏幕... xaml

时间:2013-05-03 08:55:20

标签: c# xaml data-binding windows-store-apps winrt-xaml

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

1 个答案:

答案 0 :(得分: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