Button Question

  • Thread starter Thread starter Kevin Blackwell
  • Start date Start date
K

Kevin Blackwell

Probably a simple question, but how do I either have a button that is
not clickable. I don't want the visual clicking action to the button. Or
is there a way to raise so other type of object so that it look raised
like a button?

Thanks

Kevin

(e-mail address removed)
 
You could always display an image that looks like the button. That way you
could trap click events without actually having a visual reaction.
 
Hi Kevin,

A couple of ways springs to mind.
You can set the button's enabled property to false, or
you can use a Label and set its borderstyle to BorderStyle.Fixed3D.

Hope this helps,
Morten
 
Back
Top