home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / zkuste / delphi / kompon / d3456 / SYSIMAGE.ZIP / Demo / Main.dfm / Main.txt
Encoding:
Text File  |  2001-12-30  |  2.0 KB  |  93 lines

  1. object MainForm: TMainForm
  2.   Left = 192
  3.   Top = 107
  4.   Width = 696
  5.   Height = 480
  6.   Caption = 'TSysImageList Demo'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   Position = poDefault
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object ListView: TListView
  19.     Left = 0
  20.     Top = 23
  21.     Width = 688
  22.     Height = 430
  23.     Align = alClient
  24.     Columns = <>
  25.     IconOptions.WrapText = False
  26.     LargeImages = SysImageListLarge
  27.     MultiSelect = True
  28.     OwnerData = True
  29.     ReadOnly = True
  30.     SmallImages = SysImageListSmall
  31.     TabOrder = 0
  32.     OnData = ListViewData
  33.     OnDataHint = ListViewDataHint
  34.     OnSelectItem = ListViewSelectItem
  35.   end
  36.   object ToolBar: TToolBar
  37.     Left = 0
  38.     Top = 0
  39.     Width = 688
  40.     Height = 23
  41.     ButtonHeight = 21
  42.     ButtonWidth = 151
  43.     Caption = 'ToolBar'
  44.     EdgeBorders = [ebBottom]
  45.     Flat = True
  46.     ShowCaptions = True
  47.     TabOrder = 1
  48.     object btnLargeIcons: TToolButton
  49.       Left = 0
  50.       Top = 0
  51.       AutoSize = True
  52.       Caption = 'Show Large Icons'
  53.       ImageIndex = 0
  54.       OnClick = btnLargeIconsClick
  55.     end
  56.     object btnSmallIcons: TToolButton
  57.       Left = 97
  58.       Top = 0
  59.       AutoSize = True
  60.       Caption = 'Show Small Icons'
  61.       ImageIndex = 1
  62.       OnClick = btnSmallIconsClick
  63.     end
  64.     object btnSaveIcon: TToolButton
  65.       Left = 192
  66.       Top = 0
  67.       AutoSize = True
  68.       Caption = 'Export Selected Icons to File...'
  69.       ImageIndex = 2
  70.       OnClick = btnSaveIconClick
  71.     end
  72.   end
  73.   object SysImageListLarge: TSysImageList
  74.     BkColor = clWhite
  75.     IconSize = isLargeIcons
  76.     Left = 44
  77.     Top = 40
  78.   end
  79.   object SysImageListSmall: TSysImageList
  80.     BkColor = clWhite
  81.     Left = 12
  82.     Top = 40
  83.   end
  84.   object SaveDialog: TSaveDialog
  85.     DefaultExt = 'bmp'
  86.     Filter = 'Bitmap Files|*.bmp'
  87.     Options = [ofOverwritePrompt, ofHideReadOnly, ofPathMustExist, ofEnableSizing]
  88.     Title = 'Save Icon(s) As'
  89.     Left = 76
  90.     Top = 40
  91.   end
  92. end
  93.