diff --git a/Mk0.Software.Bildduplikate/Form1.cs b/Mk0.Software.Bildduplikate/Form1.cs index be020b7..f42c1e3 100644 --- a/Mk0.Software.Bildduplikate/Form1.cs +++ b/Mk0.Software.Bildduplikate/Form1.cs @@ -74,8 +74,8 @@ namespace Mk0.Software.Bildduplikate pictureBox2.Image = img2; FileInfo f1 = new FileInfo(duplicates.ElementAt(lineDup).Path1); FileInfo f2 = new FileInfo(duplicates.ElementAt(lineDup).Path2); - label1.Text = Path.GetFileName(duplicates.ElementAt(lineDup).Path1) + Environment.NewLine + FormatSize(f1.Length) + Environment.NewLine + f1.LastWriteTime; - label2.Text = Path.GetFileName(duplicates.ElementAt(lineDup).Path2) + Environment.NewLine + FormatSize(f2.Length) + Environment.NewLine + f2.LastWriteTime; + label1.Text = Path.GetFileName(duplicates.ElementAt(lineDup).Path1) + Environment.NewLine + FormatSize(f1.Length) + Environment.NewLine + f1.LastWriteTime + Environment.NewLine + img1.Width + "x" + img1.Height; + label2.Text = Path.GetFileName(duplicates.ElementAt(lineDup).Path2) + Environment.NewLine + FormatSize(f2.Length) + Environment.NewLine + f2.LastWriteTime + Environment.NewLine + img2.Width + "x" + img2.Height; label3.Text = total + " Duplikate"; UIElementsVisible(true); }