void Edit()
{
if(this.surface.selWB==null)
return;
a.graphics.WrappedBmp wb=new a.graphics.WrappedBmp(this.surface.selWB);
EditForm f=new EditForm(this.surface, ref wb);
if(DialogResult.Yes==f.ShowDialog())
{
this.surface.selWB= wb;
this.surface.Invalidate();
this.needsSaved=true;
}
f.Dispose();
}