public void InsertItem(int index, IToolbarItemBackend item) { var value = item.ToWpf(); if (value != null) { value.Style = ToolbarUtils.ToolbarItemStyle(value); Control.Items.Insert(index, value); } }
public void RemoveItem(IToolbarItemBackend item) { Control.Items.Remove(item.ToWpf()); }
public void RemoveItem(IToolbarItemBackend backend) { Control.Children.Remove(backend.ToWpf()); }
public void InsertItem(int index, IToolbarItemBackend backend) { Control.Children.Insert(index, backend.ToWpf()); }