Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
60
Editorbutton
posted

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?

Parents
No Data
Reply
  • 6120
    Offline posted

    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.

Children
No Data