unit TestCombo1;

interface

uses
  Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
  Vcl.Controls, Vcl.Forms, Vcl.Dialogs, VCL.TMSFNCTypes, VCL.TMSFNCUtils,
  VCL.TMSFNCGraphics, VCL.TMSFNCGraphicsTypes, VCL.TMSFNCCustomControl,
  VCL.TMSFNCCustomPicker, VCL.TMSFNCComboBox, VCL.TMSFNCCustomComponent,
  VCL.TMSFNCBitmapContainer;

type
  TTestCombo = class(TForm)
    TMSFNCBitmapContainer1: TTMSFNCBitmapContainer;
    TMSFNCComboBox1: TTMSFNCComboBox;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  TestCombo: TTestCombo;

implementation

{$R *.dfm}

end.
