Place icons on the 3 new/save/delete buttons on the session manager, to make them more noticeable

This commit is contained in:
Ansgar Becker
2019-12-15 19:31:09 +01:00
parent feeb1106a7
commit 74068d68ad

View File

@ -46,6 +46,8 @@ object connform: Tconnform
Height = 25 Height = 25
Anchors = [akLeft, akBottom] Anchors = [akLeft, akBottom]
Caption = 'Save' Caption = 'Save'
ImageIndex = 10
Images = MainForm.VirtualImageListMain
TabOrder = 2 TabOrder = 2
OnClick = btnSaveClick OnClick = btnSaveClick
end end
@ -156,6 +158,8 @@ object connform: Tconnform
Anchors = [akLeft, akBottom] Anchors = [akLeft, akBottom]
Caption = 'New' Caption = 'New'
DropDownMenu = popupNew DropDownMenu = popupNew
ImageIndex = 45
Images = MainForm.VirtualImageListMain
Style = bsSplitButton Style = bsSplitButton
TabOrder = 1 TabOrder = 1
OnClick = btnNewClick OnClick = btnNewClick
@ -167,6 +171,8 @@ object connform: Tconnform
Height = 25 Height = 25
Anchors = [akLeft, akBottom] Anchors = [akLeft, akBottom]
Caption = 'Delete' Caption = 'Delete'
ImageIndex = 46
Images = MainForm.VirtualImageListMain
TabOrder = 3 TabOrder = 3
OnClick = btnDeleteClick OnClick = btnDeleteClick
end end