C#:Listview LargeIcon 视图:消除行之间的 space

C#: Listview LargeIcon view: Eliminating space between rows

我正在为特定 purpose/application 构建自定义 ListView 控件,其中我必须显示图库。为此,我使用所有者绘制过程在 ListView 中手动绘制图像。

我在 ListView 中的图像将是 128x128 像素,因此我分配了一个空白 ImageList 控件(具有 128x128 图像尺寸)作为图像列表到 ListView 以自动定义项目大小。

到目前为止,这对我来说效果很好。但我需要消除项目行之间的 space(如示例图像所示)。我的目标是使自定义列表视图看起来像图像网格。我不担心项目左右的space,只需要去掉行之间的space,这样它看起来像一个连续的网格。

感谢任何帮助。谢谢

切换到平铺视图并执行您自己的绘图可以避免行间距问题:

listView1.TileSize = new Size(128, 128);
listView1.View = View.Tile;
listView1.OwnerDraw = true;
listView1.DrawItem += listView1_DrawItem;

和一个简单的绘图例程:

private void listView1_DrawItem(object sender, DrawListViewItemEventArgs e) {
  Color textColor = SystemColors.WindowText;
  if (e.Item.Selected) {
    if (listView1.Focused) {
      textColor = SystemColors.HighlightText;
      e.Graphics.FillRectangle(SystemBrushes.Highlight, e.Bounds);
    } else if (!listView1.HideSelection) {
      textColor = SystemColors.ControlText;
      e.Graphics.FillRectangle(SystemBrushes.Control, e.Bounds);
    }
  } else {
    using (SolidBrush br = new SolidBrush(listView1.BackColor)) {
      e.Graphics.FillRectangle(br, e.Bounds);
    }
  }

  e.Graphics.DrawRectangle(Pens.Red, e.Bounds);
  TextRenderer.DrawText(e.Graphics, e.Item.Text, listView1.Font, e.Bounds,
                        textColor, Color.Empty,
                        TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter);
}

结果: