Hi allI have a UltraButton set as "FlatBorderless".When I move with the mouse over the buttonthere is a little border shown. How can I remove this border ?See the picture.Best regardsFrank Uray
hi frank_uray
You may try this.
this.ultraButton1.HotTrackAppearance.BorderColor = Color.Transparent;
if you don't want border on click then
this.ultraButton1.PressedAppearance.BorderColor = Color.Transparent;
Hi BorisYes, that was it :-)Thanks and regardsFrank
Hello Frank,
I wanted to know if you were able to solve your issue based on these suggestions or you still need help. Please let me know.
The solution I came up with, after some research is to set the 'BorderColor' property in the 'HotTrackAppearance' object of the button to 'Gray'. This is in your sample and it seems to work fine. Please let me know If I misunderstood you.
Hi BorisI have tried this already, it does not help.I have now made a little sample solution.When you move with the mouse over this button you will see the border I mean.Thanks and best regardsFrank Uray