Changeset 110 for branches/generator/Forms/UFormRule.lfm
- Timestamp:
- Aug 8, 2017, 11:15:41 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/generator/Forms/UFormRule.lfm
r109 r110 13 13 Left = 376 14 14 Height = 25 15 Top = 3 2815 Top = 360 16 16 Width = 75 17 Anchors = [akLeft, akBottom] 17 18 Caption = 'Ok' 18 19 ModalResult = 1 … … 20 21 end 21 22 object ButtonCancel: TButton 22 Left = 1 7623 Left = 168 23 24 Height = 25 24 Top = 3 2825 Top = 360 25 26 Width = 75 27 Anchors = [akLeft, akBottom] 26 28 Caption = 'Cancel' 27 29 ModalResult = 2 … … 43 45 TabOrder = 2 44 46 end 47 object ListView: TListView 48 Left = 16 49 Height = 264 50 Top = 80 51 Width = 624 52 Anchors = [akTop, akLeft, akBottom] 53 Columns = < 54 item 55 Caption = 'Name' 56 Width = 604 57 end> 58 MultiSelect = True 59 OwnerData = True 60 PopupMenu = PopupMenu1 61 ReadOnly = True 62 RowSelect = True 63 TabOrder = 3 64 ViewStyle = vsReport 65 OnData = ListViewData 66 OnDblClick = ListViewDblClick 67 OnKeyPress = ListViewKeyPress 68 OnSelectItem = ListViewSelectItem 69 end 70 object ActionList1: TActionList 71 left = 347 72 top = 187 73 object AAdd: TAction 74 Caption = 'Add' 75 OnExecute = AAddExecute 76 end 77 object AModify: TAction 78 Caption = 'Modify' 79 OnExecute = AModifyExecute 80 end 81 object ARemove: TAction 82 Caption = 'Remove' 83 OnExecute = ARemoveExecute 84 end 85 end 86 object PopupMenu1: TPopupMenu 87 left = 118 88 top = 185 89 object MenuItem1: TMenuItem 90 Action = AAdd 91 end 92 object MenuItem2: TMenuItem 93 Action = AModify 94 end 95 object MenuItem3: TMenuItem 96 Action = ARemove 97 end 98 end 45 99 end
Note:
See TracChangeset
for help on using the changeset viewer.