added image resolution in info text #7
This commit is contained in:
parent
8a7d1b2368
commit
c9cbfd9c3d
@ -74,8 +74,8 @@ namespace Mk0.Software.Bildduplikate
|
|||||||
pictureBox2.Image = img2;
|
pictureBox2.Image = img2;
|
||||||
FileInfo f1 = new FileInfo(duplicates.ElementAt(lineDup).Path1);
|
FileInfo f1 = new FileInfo(duplicates.ElementAt(lineDup).Path1);
|
||||||
FileInfo f2 = new FileInfo(duplicates.ElementAt(lineDup).Path2);
|
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;
|
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;
|
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";
|
label3.Text = total + " Duplikate";
|
||||||
UIElementsVisible(true);
|
UIElementsVisible(true);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user