Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the Developer Express equivalent of System.Windows.Forms.LinkButton?

Tags:

devexpress

I can't seem to find Developer Express' version of the LinkButton. (The Windows Forms linkbutton, not the ASP.NET linkbutton.) HyperLinkEdit doesn't seem to be what I'm looking for since it looks like a TextEdit/TextBox.

Anyone know what their version of it is? I'm using the latest DevX controls: 8.2.1.

like image 581
Josh Kodroff Avatar asked Dec 14 '25 21:12

Josh Kodroff


1 Answers

The control is called the HyperLinkEdit. You have to adjust the properties to get it to behave like the System.Windows.Forms control like so:

    control.BorderStyle = BorderStyles.NoBorder;
    control.Properties.Appearance.BackColor = Color.Transparent;
    control.Properties.AppearanceFocused.BackColor = Color.Transparent;
    control.Properties.ReadOnly = true;
like image 154
Josh Kodroff Avatar answered Dec 18 '25 00:12

Josh Kodroff



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!