Hi,
I want to remove the top four buttons from Image Editor control. How can do I do that? I found one thread for "UI for WPF", but the properties mentioned in that thread, like IsOpenButtonVisible etc are not there in my latest downloaded version of control. Are those properties specific to WPF? Please let me know how to remove those buttons in WinForm.
Thanks!
Ruturaaj.
5 Answers, 1 is accepted
Hi Ruturaaj,
In the WinForms implementation, this is done in a different way. Here is how to hide the buttons:
radImageEditor1.ImageEditorElement.CommandsElement.TopCommandsStackElement.Visibility = ElementVisibility.Collapsed;
I hope this helps. Should you have any other questions, do not hesitate to ask.
Regards,
Dimitar
Progress Telerik
RadImageEditor for Winforms
Hello Ruturaaj,
The following snippet demonstrates how you can iterate the items:
foreach (var item in radImageEditor1.ImageEditorElement.CommandsElement.CommandsStackElement.Children)
{
if (item is RadMenuItem menuItem)
{
Console.WriteLine(menuItem.Text);
}
}
Should you have any other questions, do not hesitate to ask.
Regards,
Dimitar
Progress Telerik
RadImageEditor for Winforms
Thanks.
I checked the online documentation; these methods are not documented anywhere. Can you please show me where can I get the complete documentation either in CHM or PDF format?
Hello Ruturaaj,
The following article shows where you can find the offline documentation: Download Product Files.
Thank you for your feedback, indeed such an article will be useful and we will add it as soon as possible.
I hope this helps. Should you have any other questions, do not hesitate to ask.
Regards,
Dimitar
Progress Telerik
RadImageEditor for Winforms