示例#1
0
文件: Icon.cs 项目: i-e-b/Form8sn
 // Save this icon to a specified stream.
 public void Save(Stream outputStream)
 {
     if (image != null)
     {
         image.Save(outputStream, PortableImage.Icon);
     }
 }