Set TShellListView column widths with constant columns

Is there a way to permanently set the column width in Delphi 2007 TShellListView in vsReport mode using code? The normal ShellListView.Columns [0] .Width property sets the width for the current directory, and the width is reset after each change of the current directory or update of the file list (including updates and directory changes made using the code, the user double-clicks the folder, etc. )

+3
source share
1 answer

Use property Columns:

ShellListView.Columns[0].Width := 200;
+2
source

Source: https://habr.com/ru/post/1712045/


All Articles