Getting Started with TMS FNC List Editor
Prerequisites
- Delphi with TMS FNC UI Pack installed.
- A new or existing VCL, FMX, or WEB application.
Steps
- Drop a
TTMSFNCListEditor onto a form.
- Add items through the
Items collection.
- Use
ItemAppearance to style normal and selected item states.
- Assign a
BitmapContainer when items use LeftImageName or RightImageName.
- Handle item and editor events when insertion, deletion, or text updates need validation.

procedure TForm1.ConfigureListEditor;
var
itm: TTMSFNCCustomListEditorItem;
begin
TMSFNCListEditor1.Items.Clear;
itm := TMSFNCListEditor1.Items.Add;
itm.Text := 'alice@example.com';
itm.Value := 'alice';
itm := TMSFNCListEditor1.Items.Add;
itm.Text := 'bob@example.com';
itm.Value := 'bob';
end;
Next steps