
What should I do to see all the content in label? I already used Textblock but I can’t still see it’s full content…
I am new in WPF so I still don’t know what should I do with this problem.
this is my code behind:
lblFExtension.Content = "Type of File: " + fInfo.Extension;
lblFName.Content = "File Name: " + fInfo.Name;
lblFLocation.Content = "File Location: " + fInfo.Directory;
lblFSize.Content = "File Size: " + Convert.ToString(fileSizeConversion(fInfo.Length));
adjust your texblock height and then give TextWrapping=”Wrap”.it will work.Before this you have to check texblock margin