Difference between revisions of "Shell Controls"

From Lazarus wiki
Jump to navigationJump to search
Line 29: Line 29:
  
 
Mihail Chichkanov
 
Mihail Chichkanov
 +
 +
[[Category:LCL]]
 +
[[Category:GUI]]

Revision as of 19:06, 27 August 2013

English (en) русский (ru)

The Shell Controls are a series of advanced controls destinated to beaultifully represent files and directories of the system.

TShellTreeView

TShellTreeView component under the tab Misc.

TShellTreeView.png

Component Properties TShellTreeView.

Property.png

Add component TShellListView. Set properties

ShellTreeView1.ShellListView := ShellListView1;
ShellListView1.ShellTreeView := ShellTreeView1;
Выделение 221.png

Run application. We can see root directory in Linux.

Form1 220.png

Better way to do is:

procedure TForm1.FormCreate(Sender: TObject);
begin
   ShellTreeView2:= TShellTreeView.create(Form1);
   ShellTreeView2.Left:=10;
   ShellTreeView2.Top:=10;
   ShellTreeView2.Width:=250;
   ShellTreeView2.Height:=430;
   ShellTreeView2.Parent:=Form1;
end;
Form1 222.png

Mihail Chichkanov