Hi Ooni,
Your requirement can be met at the sample level. We
have prepared a simple sample for your requirement, in which we have found the
Crop element from the ToolBarItems collection removed that element as like in
the below code snippet. We have attached the sample below for your reference.
[C#]
|
public MainWindow()
{
InitializeComponent();
foreach (var item in
this.editor.ToolbarSettings.ToolbarItems)
{
if (item.Name ==
"Crop")
{
this.editor.ToolbarSettings.ToolbarItems.Remove(item);
break;
}
}
}
|
If the shared information doesn’t meet
your requirement kindly revert us with more
information, which will be helpful for us to provide you the better solution.
Regards,
Vishal O.
Attachment:
ImageEditorDemo_89dbc6bf.zip