我有这段 C# 代码:
private void btn_getPixels_Click_Click(object sender, EventArgs e)
{
listBox1.Items.Clear();
listBox1.Items.Add("Pixel Color");
try
{
Bitmap img = new Bitmap(pictureBox1.Image);
Color c;
for (int i = 0; i < img.Width; i++)
{
for (int j = 0; j < img.Height; j++)
{
c = img.GetPixel(i, j);
listBox1.Items.Add(i + "," + j + " " + c.Name);
}
}
MessageBox.Show("SUCESSFULLY DONE");
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
问题是外部循环完成后,我在 listBox1 中看不到任何结果。
知道如何解决这个问题吗?