31 lines
273 B
ObjectPascal

unit Unit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Forms, Controls, Graphics, Dialogs, rxswitch;
type
{ TForm1 }
TForm1 = class(TForm)
RxSwitch1: TRxSwitch;
private
public
end;
var
Form1: TForm1;
implementation
{$R *.lfm}
end.