private void fillExif(Zdjecie zdjecie) { Dictionary<string, int> d = PropertyTags.defaultExifIds; string propertyValue; foreach (KeyValuePair<string,int> kv in d) { propertyValue = zdjecie.GetProperty(kv.Value); if (!propertyValue.Equals("")) Exif.Items.Add(new ListViewItem(new string[] { kv.Key, propertyValue })); } }
private void fillExif(Zdjecie zdjecie) { Dictionary <string, int> d = PropertyTags.defaultExifIds; string propertyValue; foreach (KeyValuePair <string, int> kv in d) { propertyValue = zdjecie.GetProperty(kv.Value); if (!propertyValue.Equals("")) { Exif.Items.Add(new ListViewItem(new string[] { kv.Key, propertyValue })); } } }