The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

package FBP::ListBox;
use Mouse;
our $VERSION = '0.10';
extends 'FBP::Window';
with 'FBP::Control';
has style => (
is => 'ro',
isa => 'Str',
);
has OnListBox => (
is => 'ro',
isa => 'Str',
);
has OnListDClick => (
is => 'ro',
isa => 'Str',
);
1;