⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unitshellctrls.pas

📁 I mComputermaster programmisDelphi+pascal
💻 PAS
字号:
unit UnitShellCtrls;

interface

uses 
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  ComCtrls, sListView, acShellCtrls, sTreeView, sComboBoxes, sFrameAdapter,
  StdCtrls, sComboBox;

type
  TFrameShellControls = class(TFrame)
    sShellComboBox1: TsShellComboBox;
    sShellTreeView1: TsShellTreeView;
    sShellListView1: TsShellListView;
    sFrameAdapter1: TsFrameAdapter;
    sComboBox1: TsComboBox;
    procedure sComboBox1Change(Sender: TObject);
  end;

implementation

{$R *.DFM}

procedure TFrameShellControls.sComboBox1Change(Sender: TObject);
const
  ViewStyles : array [0..3] of TViewStyle = (vsIcon, vsList, vsReport, vsSmallIcon);
begin
  sShellListView1.ViewStyle := ViewStyles[sComboBox1.ItemIndex]
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -