void Save() { if (!_sfd.ShowDialog().Value) return; try { using (var nico = new Ico()) { foreach (var item in IconFrames) nico.Add(item.Bitmap, item.Size, item.KeepAspectRatio); nico.Save(_sfd.FileName); } } catch { } }