因此,我正在尝试使用提取名称和图标在文件夹中显示文件。 这是我的结果。 My icons are not centered with the text.
我的图标未居中。我想要的只是将它们居中对齐。 谢谢。
这是我的代码:
private void view_games(string path)
{
list_game.Clear();
list_game.GridLines = true;
game_icons.Images.Clear();
list_game.LargeImageList = game_icons;
string[] files = System.IO.Directory.GetFiles(path);
for (int x = 0; x < files.Length; x++)
{
Icon icon_temp = System.Drawing.Icon.ExtractAssociatedIcon(files[x]);
game_icons.Images.Add(icon_temp);
list_game.Items.Add(System.IO.Path.GetFileNameWithoutExtension(files[x]), x);
}
}