I am using an editorbutton in the buttonsright collection of an ultratexteditor on a winform. I set the editorbutton's image but would like to suppress the focus rectangle that appears when user mouses over the image. Is this possible?
Hello Joe,
I believe the area that you are referring to is due to the hot tracked appearance of the editor button. This can be removed by disabling the themes on the UltraTextEditor and setting the DisplayStyle property. For example, you can do this:
this.ultraTextEditor1.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
this.ultraTextEditor1.DisplayStyle = DisplayStyle.Office2007;
Please let me know if I may be of further assistance.