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

Question

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.

Answer

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;
< br > via < a class="StackLink" href=" http://stackoverflow.com/questions/3625/" >What's the Developer Express equivalent of System.Windows.Forms.LinkButton?< /a>
Share on Google Plus

About Cinema Guy

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment