PictureBox控件使用了ImageList里面的图片,为什么图片非常模糊? 万分感谢!

解决方案 »

  1.   

    查一下这两项:
    this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit; //是否设成了8位色
    this.imageList1.ImageSize = new System.Drawing.Size(64, 64);  //是否过小.
      

  2.   

    使用ImageList不太合适于大小不一的图片,如果想把大小不同的图片放到列表里,最好是一个数组或是泛型开表等。
      

  3.   

    this.imageList1.ImageSize = new System.Drawing.Size(64, 64);