background="file:///D:\图标\Administrative Tools (nonXP).ico"

解决方案 »

  1.   

    获取或设置在控件中显示的背景图像。
    [C#]
    public virtual Image BackgroundImage {get; set;}
    属性值
    一个 Image,它表示在控件的背景中显示的图像。
    IMAGE是一个对像呀!你把它设为null就没有背景图了。
      

  2.   

    this.BackgroundImage=null;
    this.Refresh();
      

  3.   

    设置为null?是说BackgroundImage=null吗?可是背景没有变化呀
      

  4.   

    在属性筐里选中,按delete行不?
      

  5.   

    this.BackgroundImage = this.pictureBox1.Image;
    this.BackgroundImage = null;