How to have 100% opacity even when control is disabled in wpf C#

Viewed 1468

I have a textbox in my wpf, when I disable it the opacity decrease. This happens to tell the user that the textbox is not enable. Is there any way to disable a control and keep the look as the same?

2 Answers

Use IsHitTestVisible="False" instead of IsEnabled="False"

Related