Hello,
I'm using SetToolbarItemVisibility to hide all buttons but the crop options and the apply button.
.cs file:
private readonly string[] hideItems = new[] {
"Text", "Add", "TextColor", "FontFamily", "Arial", "Noteworthy", "Marker Felt", "Bradley Hand",
"SignPainter",
"TextEffects", "Bold", "Italic", "Underline", "Opacity", "Path", "StrokeThickness", "Colors", "Shape",
"Rectangle",
"Circle", "Arrow", "Effects", "Hue", "Saturation", "Brightness", "Contrast", "Blur", "Sharpen", "Pen", "Browse", "Save"
};
foreach (var item in hideItems)
{
this.ImageEditor.SetToolbarItemVisibility(item, false);
}
The issue is, after applying the cropping, the browse button is visible again, which should be hidden like it was in the first place.
How can I fix this?
Thank you.