Exemplo n.º 1
0
        public void ApplyComboBoxStyle(ComboBoxStyle style)
        {
            if (style.ItemsContainerStyle != null)
            {
                _itemsContainer.ApplyWidgetStyle(style.ItemsContainerStyle);
            }

            _dropDownItemStyle = style.ListItemStyle;

            foreach (var item in Items)
            {
                ((Button)item.Widget).ApplyButtonStyle(_dropDownItemStyle);
            }

            InternalChild.ApplyButtonStyle(style);
        }