When a WinForm element is disabled, it sort of grays out. Is it possible to disable an element, but adjust the disabled style so it still looks enabled (not grayed out)? >
The disabled style is part of standard Windows behavior. If you want to change the style, you'll have to draw the control yourself, meaning that you'll have to handle the Paint
method, and possibly have to override OnPaint
.
See Overriding the OnPaint Method and Custom Control Painting and Rendering.