Win32-GUI-XMLBuilder
view release on metacpan or search on metacpan
lib/Win32/GUI/XMLBuilder.pm view on Meta::CPAN
$item->{'att'}->{'parent'} = "\$self->{$name}" if $name ne $parent;
$self->{$iname} = $self->{$parent}->InsertItem($self->evalhash($item));
if($item->children_count()) {
$self->TreeView_Item($item, $parent);
}
}
}
=item <Combobox>
Generate a combobox with drop down items specified with the <Items> elements. In addition
to standard attributes for Win32::GUI::Combobox there is also a 'dropdown' attribute that
automatically sets the 'pushstyle' to 'WS_VISIBLE()|0x3|WS_VSCROLL()|WS_TABSTOP()'. In 'dropdown'
mode an <Item> element has the additional attribute 'default'.
=cut
sub Combobox {
my ($self, $t, $e) = @_;
my $name = $self->genname($e);
my $parent = $self->getParent($e);
( run in 0.479 second using v1.01-cache-2.11-cpan-2398b32b56e )